This repository has been archived on 2020-09-13. You can view files and clone it, but cannot push or open issues or pull requests.
magic-app/magic_app/templates/app_list.html
c v t efc3c98ba4
All checks were successful
continuous-integration/drone/push Build is passing
Templates using Picnic
2020-07-05 17:33:29 +02:00

14 lines
278 B
HTML

{% extends "base.html" %}
{% block content %}
<h1>Installable apps</h1>
<p>Where the magic h<em>app</em>ens.</p>
<ul>
{% for app in apps %}
<li>
<a href="{{ url_for('apps.install', app_name=app) }}">{{ app }}</a>
</li>
</ul>
{% endfor %}
{% endblock content %}