18 lines
515 B
HTML
18 lines
515 B
HTML
{% extends "basedocumentation.html" %}
|
|
|
|
{% block doccontent %}
|
|
{% if title %}
|
|
<div class="presstoc">
|
|
<div class="pressemail">Your article <I>{{ title }}</I> has been submitted. Wanna submit another?</div>
|
|
</div>
|
|
{% endif %}
|
|
|
|
<h3>Enter new press items here.</h3>
|
|
<p>Language optional (indicate only if non-English). Note optional, should be rare.</p>
|
|
|
|
<form action="" method="post">
|
|
{% csrf_token %}
|
|
{{ form.as_p }}
|
|
<input type="submit" name="submit" value="Add Press Item" />
|
|
</form>
|
|
{% endblock %} |