mirror of
https://github.com/minetest/contentdb.git
synced 2024-11-10 17:43:46 +01:00
17 lines
378 B
HTML
17 lines
378 B
HTML
{% 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 %}
|