{% extends 'api/base.html' %} {% load icons %} {% load url from future %} {% block form_content %} {% if apps.count > 0 %}

Your apps


{% for app in apps %} {% endfor %}
App name Key Deployment Actions
{{ app.name }} {{ app.key }} {{ app.get_deployment_display }} {% icon 'remove' 'white' %} Delete

{% endif %} {% if app_form %}

Create a new app

{% include 'form.inc.html' with form=app_form %}
{% csrf_token %}
{% endif %} {% endblock form_content %} {% block javascript %} {{ block.super }} {% endblock javascript %}