123456789101112131415161718192021222324252627282930313233343536373839404142 |
- {% extends "almanac/sg-base.html" %}
- {% block title %} Almanac - {{chart}} {% endblock %}
- {% block flag %}
- <h1>Seasonal Guide</h1>
- {% endblock %}
- {% block content %}
- {% load typogrify %}
- <div id="tide">
- {% load typogrify humanize almanac_tags %}
- <div id="seasonal-guide" class="first">
- {% for day in first_day_set %}
- <table id="guide">
- <tr class="sg-row" valign="top">
- {% show_tide_day_as_box day %}
- </tr>
- </table>
- {% endfor %}
- </div>
- <div id="seasonal-guide" class="second" >
- {% for day in second_day_set %}
- <table id="guide">
- <tr class="sg-row" valign="top">
- {% show_tide_day_as_box day %}
- </tr>
- </table>
- {% endfor %}
- </div>
- {% if naut_twil_am %}
- <div id="sesaonal-guide">
- <p class="naut_twil">Beginning this week, Nautical Twilight (Sun 12º below horizon) begins at {% bold_afternoon_time naut_twil_am "%-I:%M" %} and ends at {% bold_afternoon_time naut_twil_pm "%-I:%M" %}.</p>
- </div>
- {% endif %}
- </div>
- {% endblock %}
- {% block sidebar %}
- {% endblock %}
|