submit_blog.html
445 Bytes
{% extends 'feedzilla/base.html' %}
{% load i18n %}
{% block feedzilla_content %}
<h1>{% trans "Submit a blog" %}</h1>
{% if success %}
<p>{% trans "Thank you. Your application has been accepted and will be reviewed by admin in the near time." %}</p>
{% else %}
<form method="post" class="common-form">
{% csrf_token %}
{{ form.as_p }}
<p><input type="submit" value="{% trans "Submit" %}" /></p>
</form>
{% endif %}
{% endblock %}