{% extends 'base.html' %} {% load static from staticfiles %} {% block title %} | {% if swarm.id %} Swarm {{ swarm.shortname }} {% else %} New Swarm {% endif %} {% endblock title %} {% load formfield %} {% block content %}
{% csrf_token %}
{% if swarm.id %}

Swarm: {{ swarm.shortname }}

{% else %}

New Swarm

{% endif %}
{% if swarm.id %}

Deployed procs:

{% endif %}
{% if error_msg %}
{{ error_msg }}
{% endif %}
{% include "swarm_tab_general.html" %}
{% include "swarm_tab_config.html" %}
{% include "swarm_tab_preview.html" %}
{% include "swarm_tab_routing.html" %}
{% include "version_diffs.html" %}
{% endblock content %} {% block script %} {% endblock script %}