{% extends "base.html" %} {% load nst %} {% block pagetitle %}{{ form.title }}{% endblock %} {% block keywords %}{% endblock %} {% block description %}{% endblock %} {% block content %} {% if user == oneliner.user %}

A few tips before you post...

{% endif %}
{% csrf_token %}
{{ form.non_field_errors }}
In one sentence, what does it do?
{{ form.summary.errors }}
{{ form.summary }}
{{ form.line.errors }}
{{ form.line }}
Try to use relevant keywords in the explanation, so that the one-liner is easier to find by search.
{{ form.explanation.errors }}
{{ form.explanation }}
For example, if the one-liner might not work in some flavors of UNIX, etc.
{{ form.caveats.errors }}
{{ form.caveats }}

{% for action in form.actions %}{% endfor %}

{% endblock %} {% block ready %} $('#id_summary').focus(); {% endblock %}