django-markupwiki/markupwiki/templates/edit_article.html

11 lines
203 B
HTML
Raw Normal View History

2010-03-30 14:43:30 +00:00
{% 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>