Added an index instead of "all sandwiches", made custom titles for every page.
[~kgodey/maayanwich.git] / templates / allsandwiches.html
index 64f734f..eaaba21 100644 (file)
@@ -1,20 +1,40 @@
-<html>
-       <head>
-               <title>Every Ma'ayanwich Ever!</title></head>
-       <body>
-               <h1>All Ma'ayanwiches</h1>
-               {% for s in sandwiches %}
-                       <h3>{{ s.adjective }}</h3>
-                       <p>Made on {{ s.date_made }} and added by {{ s.user.username }}.</p>
-                       <img src="{{ s.picture }}">
-                       <h5>Ingredients</h5>
-                       <ul>
+{% extends "base.html" %}
+
+{% block title %}All Sandwiches{% endblock %}
+
+{% block content %}
+               {% for s in allsandwiches %}
+                       <h3 class="sandwichtitle">{{ s.adjective }}</h3>
+                       <p class="metadata">Made on {{ s.date_made|date:"F j Y" }} and added by  
+                               {% ifequal s.user request.user %} you. 
+                                       <a href="{% url edit_sandwich slug=s.slug %}"> (Edit) 
+                               {% else %} 
+                                       {% if s.user.first_name %} {{ s.user.first_name }} 
+                                               {% if s.user.last_name %} {{ s.user.last_name }} 
+                                               {% endif %} 
+                                       {% else %} 
+                                               {{ s.user.username }}. 
+                                       {% endif %}
+                               {% endifequal %}</p>
+                       {% if s.picture %}
+                               <img class="sandwichimg" src="{{ s.picture.url }}">
+                       {% endif %}
+                       <h4 class="sandwichsub">Ingredients</h4>
+                       <ul class="ingredients">
                                {% for i in s.ingredients.all %}
                                        <li>{{ i.name }}
                                {% endfor %}
                        </ul>
-                       <h5>Notes</h5>
-                       <p> {{ s.notes }}</p>
+                       {% if s.notes %}
+                               <h4 class="sandwichsub">Notes</h4>
+                               <p class="sandnotes"> {{ s.notes }}</p>
+                       {% endif %}
+                       {% load comments %}
+                       {% get_comment_count for s as c %}
+                       {% ifequal c 1 %}
+                               <p class="sandnotes"><a href="{{ s.get_absolute_url }}">1 comment</a></p>
+                       {% else %}
+                               <p class="sandnotes"><a href="{{ s.get_absolute_url }}">{{ c }} comments</a></p>
+                       {% endifequal %}
                {% endfor %}
-       </body>
-</html>
\ No newline at end of file
+{% endblock %}
\ No newline at end of file