aboutsummaryrefslogtreecommitdiff
path: root/app/templates/admin/licenses/list.html
blob: 869aac62cda4d5b9a4b3a4cb9f5fe3a86f78799d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{% extends "base.html" %}

{% block title %}
Licenses
{% endblock %}

{% block content %}
	<p>
		<a href="{{ url_for('admin.create_edit_license') }}">New License</a>
	</p>
	<ul>
		{% for l in licenses %}
			<li><a href="{{ url_for('admin.create_edit_license', name=l.name) }}">{{ l.name }}</a> [{{ l.is_foss and "Free" or "Non-free"}}]</li>
		{% endfor %}
	</ul>
{% endblock %}