nuitdelinfo_2021/templates/people/edit.html

11 lines
209 B
HTML
Raw Permalink Normal View History

2021-12-02 23:46:42 +01:00
<head>
{{ form.media }}
</head>
<body>
2021-12-03 00:23:06 +01:00
<form action="/p/edit/{{ edit_id }}/" method="post">
{% csrf_token %}
{{ form }}
<input type="submit" value="Submit">
</form>
2021-12-02 23:46:42 +01:00
</body>