11 lines
203 B
HTML
11 lines
203 B
HTML
|
{% if article %}
|
||
|
<h2>Editing Article "{{title}}"</h2>
|
||
|
{% else %}
|
||
|
<h2>Creating Article "{{title}}"</h2>
|
||
|
{% endif %}
|
||
|
|
||
|
<form method="POST" action=".">
|
||
|
{{ form.as_ul }}
|
||
|
<input type="submit">
|
||
|
</form>
|