aboutsummaryrefslogtreecommitdiff
path: root/app/templates/admin/licenses/list.html
blob: 43856f55f47485d577b1a49a5dc934e494606ebd (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 Tag</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 %}