Skip to content

Instantly share code, notes, and snippets.

@AeroNotix
Created April 6, 2012 10:04
Show Gist options
  • Select an option

  • Save AeroNotix/2318609 to your computer and use it in GitHub Desktop.

Select an option

Save AeroNotix/2318609 to your computer and use it in GitHub Desktop.
{% extends "base.html" %}
{% block header %}
<link href="{{ STATIC_URL }}calendar.css" type="text/css"
rel="stylesheet" />
{% endblock header %}
{% block content %}
<table cellpadding="10">
<tr>
<td valign="top">
{{ select|safe }}
</td>
<td>
{{ calendar|safe }}
</td>
<td>
<table height="350" border="1" valign="left">
<tr>
<td class="WKDAY">
Work Day
</td>
</tr>
<tr>
<td class="SICKD">
Sick Day
</td>
</tr>
<tr>
<td class="HOLIS">
Holiday
</td>
</tr>
<tr>
<td class="SPECI">
Special
</td>
</tr>
<tr>
<td class="OTHER">
Other
</td>
</tr>
</table>
</td>
</tr>
</table>
{% endblock %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment