Created
April 6, 2012 10:04
-
-
Save AeroNotix/2318609 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| {% 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