You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
{% extends 'base.html' %}
|
|
|
|
|
|
{% block title %}Edit Comment{% endblock %}
|
|
|
|
{% block header %}<h1>Edit Comment</h1>{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
<form class="model-form" method="post">
|
|
{% csrf_token %}
|
|
{{ form }}
|
|
<input type="submit" value="Save">
|
|
</form>
|
|
|
|
{% endblock %}
|