blob: 4ff9c46afd32f9cdc7fa5c30fe0215ea3ab65d20 [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 Rotation Schedule</h2>
<br>
<img border="0" src="/static/clint.jpg" width="180" height="120">
<br/><br/>
<font size="2">
Sheriffs: Please contact rmistry@ or skiabot@ if you need to swap your schedule.
<br/>
Documentation for sheriffs is <a href='https://sites.google.com/site/skiadocs/developer-documentation/tree-sheriff'>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 %}