{% extends "base.html" %} {% block content %}

My Listings

{% if apps %}
{% for app in apps %}
{% if app.logo_url %} {{ app.name }} logo {% endif %}
{{ app.name }}

{{ app.description | truncate(100) }}

By {{ app.developer }}

View Details Edit
{% endfor %}
{% else %}

You haven't registered any apps yet.

Register an App {% endif %} {% endblock %}