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

14 lines
278 B
HTML
Raw Permalink Normal View History

2020-07-05 15:33:29 +00:00
{% 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 %}