aboutsummaryrefslogtreecommitdiff
path: root/app/templates/admin/licenses/list.html
blob: ff3080563bc31ffb292687e2e21eddb0da353ff7 (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('createedit_license_page') }}">New License</a>
	</p>
	<ul>
		{% for l in licenses %}
			<li><a href="{{ url_for('createedit_license_page', name=l.name) }}">{{ l.name }}</a> [{{ l.is_foss and "Free" or "Non-free"}}]</li>
		{% endfor %}
	</ul>
{% endblock %}