{% extends "skins/base.html" %} {% load i18n admin_urls admin_static %} {% load staticfiles %} {% block extra_css %} {% endblock %} {% block navbar %} {% endblock %} {% block content %}

Edit your app

{% if form.errors %}
Please correct the errors below
{% endif %} {% if form.non_field_errors %}
{{ form.non_field_errors|join:", " }}
{% endif %} {% include "form_field.html" with field=form.name %}
Select template {% for template in form.selected_template %}
{% with "img/"|add:template.choice_label|add:".jpg" as src %} template option {{ forloop.counter }} {% endwith %} {% include "form_field.html" with field=template%}
{% endfor %}
{% csrf_token %}

{% block script %} {% endblock %} {% endblock %}