NDOJ/templates/contest/tag-title.html

12 lines
347 B
HTML
Raw Normal View History

2020-01-21 06:35:58 +00:00
<h2 style="display:inline">
2023-01-27 23:11:10 +00:00
<span style="background-color: {{ tag.color }}; color: {{ tag.text_color }}" class="contest-tag">
{{- tag.name -}}
</span>
2020-01-21 06:35:58 +00:00
</h2>
{% if perms.judge.change_contesttag %}
2023-01-27 23:11:10 +00:00
<div class="title-line-action">
[<a href="{{ url('admin:judge_contesttag_change', tag.id) }}">{{ _('Edit') }}</a>]
</div>
2020-01-21 06:35:58 +00:00
{% endif %}