blob: 1c5b3cf90550495849b2fa7de5ef029cee035bfa [file] [log] [blame]
{% extends "base.html" %}
{% block content %}
<center>
{% if is_admin %}
{% if error_message %}
<div class="error">
{{ error_message }}
</div>
{% endif %}
{% endif %}
<br><br>
<h2>{{ sheriff_type }} Rotation Schedule</h2>
<br>
<img border="0" src="/static/{{ sheriff_image }}" width="180" height="120">
<br/><br/>
<font size="2">
{{ sheriff_type }}s: Please contact rmistry@ or skiabot@ if you need to swap your schedule.
<br/>
Documentation for {{ sheriff_type }}s is <a href='{{ sheriff_doc }}'>here</a>.
</font>
<br><br>
<table border="1" cellpadding="5">
<tr bgcolor="#CCCCFF">
<td><b>Who</b></td>
<td><b>When</b></td>
</tr>
{% for a_schedule in schedules %}
<tr {% if a_schedule.current_week %}bgcolor="#8FDF5F"{% endif %}>
<td>{{ a_schedule.username }}</td>
<td>{{ a_schedule.readable_range }}</td>
</tr>
{% endfor %}
</table>
</center>
{% endblock %}