]> git.lizzy.rs Git - cheatdb.git/blob - app/templates/admin/licenses/list.html
869aac62cda4d5b9a4b3a4cb9f5fe3a86f78799d
[cheatdb.git] / app / templates / admin / licenses / list.html
1 {% extends "base.html" %}
2
3 {% block title %}
4 Licenses
5 {% endblock %}
6
7 {% block content %}
8         <p>
9                 <a href="{{ url_for('admin.create_edit_license') }}">New License</a>
10         </p>
11         <ul>
12                 {% for l in licenses %}
13                         <li><a href="{{ url_for('admin.create_edit_license', name=l.name) }}">{{ l.name }}</a> [{{ l.is_foss and "Free" or "Non-free"}}]</li>
14                 {% endfor %}
15         </ul>
16 {% endblock %}