mirror of
https://github.com/kristoferssolo/FOSSDB.git
synced 2025-10-21 17:50:35 +00:00
13 lines
365 B
HTML
13 lines
365 B
HTML
{% extends "layout.html" %}
|
|
{% block title %}Edit {{ project.name }}{% endblock %}
|
|
{% block content %}
|
|
<form method="post">
|
|
{% csrf_token %}
|
|
{{ project_form.as_p }}
|
|
{{ hosting_platform_form.as_table }}
|
|
<br />
|
|
{{ programming_language_form.as_table }}
|
|
<button type="submit">Save</button>
|
|
</form>
|
|
{% endblock %}
|