{% extends "base.html" %} {% load i18n static %} {% block head %} TipPy Blog {% endblock %} {% block nav %} {% include "nav.html" with ls=ls season=season %} {% endblock %} {% block body %}
{% if form.errors %}

{% if form.errors.items|length == 1 %} {% trans "Please correct the error below." %} {% else %} {% trans "Please correct the errors below." %} {% endif %}

{% endif %}
{% csrf_token %}
{{form.title.errors}}
{{form.content.errors}}
{% endblock %}