online-judge/templates/license.html
2022-07-17 23:35:57 -04:00

14 lines
456 B
HTML

{% extends "common-content.html" %}
{% block description %}
{% cache 3600 'license_html' license.id %}
{{ license.text|markdown('license') }}
{% endcache %}
{% endblock %}
{% block info_float %}
{% if perms.judge.change_license %}
<div><a href="{{ url('admin:judge_license_change', license.id) }}">{{ _('Edit') }}</a></div>
{% endif %}
<div><a href="{{ license.link }}">{{ _('Visit source') }}</a></div>
{% endblock %}