FOSSDB/templates/fossdb/update_view.html
2023-06-26 17:13:47 +00:00

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 %}