{% extends "base.html" %} {% load static %} {% block title %}- Pending Apps{% endblock %} {% block more_head %} {% endblock %} {% block content %}
{% for pending_app in pending_apps %} {% endfor %}
Name Version Submitted On Submitter
{{ pending_app.fullname }} {{ pending_app.version }} {{ pending_app.created|date:"j M, H:i:s" }} {{ pending_app.submitter.username }} {% if pending_app.submitter.email %} <{{ pending_app.submitter.email }}> {% endif %} Download
{% endblock %}