{% extends "base.html" %} {% block title %}Manage All Apps{% endblock %} {% block content %}

Manage All Apps

{% if apps %} {% for app in apps %} {% endfor %}
Name Developer Submitted By Actions
{{ app.name }} {{ app.developer }} {{ app.user.username }} View Edit
{% else %}

No apps registered yet.

{% endif %}
{% endblock %}