aboutsummaryrefslogtreecommitdiff
path: root/app/templates/admin/licenses/list.html
blob: 9d517c578096cf5d08f13bac34d7521b287a2c54 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{% extends "base.html" %}

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

{% block content %}
	<a class="btn btn-primary float-right" href="{{ url_for('admin.create_edit_license') }}">{{ _("New License") }}</a>

	<h1>{{ _("Licenses") }}</h1>

	<div class="list-group">
		{% for l in licenses %}
			<a class="list-group-item list-group-item-action"
					href="{{ url_for('admin.create_edit_license', name=l.name) }}">
				<span class="float-right badge {% if l.is_foss %}badge-primary{% else %}badge-warning{% endif %} badge-pill">
					{{ l.is_foss and "Free" or "Non-free"}}
				</span>
				{{ l.name }}
			</a>
		{% endfor %}
	</div>
{% endblock %}