{% extends "blogango/admin/base.html" %} {% block title %}{{ _("Basic Options") }}{% endblock %} {% block contents %}

{{ _("Basic Options") }}

From here you can configure the basic blog settings like the blog title and tagline.

{% if 'done' in request.GET %}
Preferences saved successfully
{% endif %}
{% if form.errors %} Please correct the following errors: {% endif %}
{% csrf_token %}
{{ form.title }}
{{ form.tag_line }}
{{ form.entries_per_page }}
{{ form.recents }}
{{ form.recent_comments }}
{% endblock %}