Files
interchan/board/templates/board/post_modify.html
2022-07-17 18:53:56 -07:00

16 lines
390 B
HTML

{% extends "board/base.html" %}
{% load i18n %}
{% block title %}
Modifying post {{post.id}} {{block.super}}
{% endblock title %}
{% block content %}
<form method="post" action="{% url 'board:post_modify' post.id %}">
{% csrf_token %}
<table>
{{form}}
<tr><td>&nbsp;</td><td><input type="submit" value="Modify post" /></td></tr>
</table>
</form>
{% endblock content %}