{% extends 'base.html' %} {% load static from staticfiles %} {% block content %}
{% if swarm %}

Swarm: {{ swarm.shortname }}

{% else %}

New Swarm

{% endif %}
{% csrf_token %} {% if instructions %} {# No, we dont' have to close that

tag. This is HTML5 baby! #}

{{ instructions }} {% endif %}

{% for field in form %}
{{field}} {{ field.help_text }}
{% endfor %}
{% if swarm.id %}

Procs

{% endif %}
{% endblock content %} {% block script %} {% if swarm.id %} {% endif %} {{ form.media }} {% endblock script %}