NDOJ/templates/status/judge-status.html

23 lines
500 B
HTML
Raw Normal View History

2020-01-21 06:35:58 +00:00
{% extends "base.html" %}
{% block js_media %}
2023-01-27 23:11:10 +00:00
{% include "status/media-js.html" %}
2020-01-21 06:35:58 +00:00
{% endblock %}
{% block media %}
2023-01-27 23:11:10 +00:00
{% include "status/media-css.html" %}
{% block content_media %}{% endblock %}
2020-01-21 06:35:58 +00:00
{% endblock %}
{% block title_ruler %}{% endblock %}
{% block title_row %}
2023-01-27 23:11:10 +00:00
{% set tab = 'judges' %}
{% include "status/status-tabs.html" %}
2020-01-21 06:35:58 +00:00
{% endblock %}
{% block body %}
2023-01-27 23:11:10 +00:00
<table id="judge-status" class="table">
{% include "status/judge-status-table.html" %}
</table>
2020-01-21 06:35:58 +00:00
{% endblock %}