NDOJ/templates/license.html

13 lines
447 B
HTML
Raw Normal View History

2020-01-21 06:35:58 +00:00
{% extends "common-content.html" %}
{% block description %}
2023-01-27 23:11:10 +00:00
{% cache 3600 'license_html' license.id %}
{{ license.text|markdown }}
{% endcache %}
2020-01-21 06:35:58 +00:00
{% endblock %}
{% block info_float %}
2023-01-27 23:11:10 +00:00
{% if perms.judge.change_license %}
<div><a href="{{ url('admin:judge_license_change', license.id) }}">{{ _('Edit') }}</a></div>
{% endif %}
<div><b>{{ _('Source:') }}</b> <a href="{{ license.link }}">{{ license.link }}</a></div>
2020-01-21 06:35:58 +00:00
{% endblock %}