{% extends "base.html" %} {% block title %}Apps - {{ block.super }}{% endblock %} {% block body_id %}dashboard-home{% endblock %} {% block body_class %}secondary dashboard{% endblock %} {% block extra_head %} {% endblock %} {% block content %}

Your Apps

Welcome {{ user.username }}!

Here are the apps that you have registered to the system. From here you should be able to access statistics, add new members, and see released versions. Additionally you can register a new development device below.

{% if apps %}
    {% for app in apps %}
  • {{ app.name }} Created · {{ app.date_created|date }} Members · {{ app.member_set.count }} Versions · {{ app.version_set.count }}
  • {% endfor %}
{% else %}
×

Why hello there, It looks like you haven’t created any apps yet. Before you can take advantage of what Clutch has to offer, you must first create an app.

{% endif %}

Global Actions ?

{% block callout %}{% endblock %}
{% endblock %}