{% extends 'layouts/base.html' %} {% block content %}
Back to dashboard

New Application
Select the template you would like to use.

{# Use overflow-x: scroll so that mobile views don't freak out # when the table is too wide #}
{% for a in apps | sort(attribute='title') %} {# Generates table with list of applications in add apps section#} {% endfor %}
Title Desctiption Catagory Platform
{{ a.title }} {{ a.description }} {%- for categories in a.categories %} {{ categories }} {%- endfor%} {{ a.platform }}
{% endblock %}