Added a better slugify function, monthly archives work, notes are optional now.
[~kgodey/maayanwich.git] / templates / base.html
index b12c087..a910bb1 100644 (file)
@@ -9,7 +9,7 @@
                                <h1 class="header">Ma'ayanwich Tracker</h1>
                        </div>
                        <div id="sidebar">
-                               <h3 class="navtitle">ACCOUNT</h3>
+                               <h3 class="navtitle">Account</h3>
                                <ul class="nav">
                                        {% if user.is_authenticated %}
                                                <li><a href="http://127.0.0.1:8000/sandwich/add/" class="navlink">Add sandwich</a></li>
                                                <li><a href="http://127.0.0.1:8000/signup/" class="navlink">Signup</a></li>
                                        {% endif %}
                                </ul>
-                               <h3 class="navtitle">NEWEST</h3>
+                               <h3 class="navtitle">Newest</h3>
                                <ul class="newest">
                                        {% for s in sandwiches %}
                                                <li><a href="{{ s.get_absolute_url }}">{{ s.adjective }}</a></li>
                                        {% endfor %}
                                </ul>
-                               <h3 class="navtitle">SANDWICHES</h3>
+                               <h3 class="navtitle">Sandwiches</h3>
                                <ul class="newest">
-                                       <li>January 2010</li>
-                                       <li>February 2010</li>
-                                       <li>To be done.</li>
+                                       {% for m in monthly %}
+                                       <li><a href="http://127.0.0.1:8000/sandwich/{{ m.year }}/{{ m.month }}/"> {{ m|date:"F" }} {{m.year}} </a></li>
+                                       {% endfor %}
                                </ul>
                                <ul class="newest">
                                        <li><a href="http://127.0.0.1:8000/sandwich/all/" class="navlink">All sandwiches</a></li>