Advertisement
VishnuAVenu

index.html

Feb 23rd, 2015
206
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.88 KB | None | 0 0
  1. {% extends 'base.html' %}
  2. {% block content %}
  3.        
  4.         <h1>Rango says .... hello world! </h1>
  5.             {% if categories %}
  6.             <ul>
  7.                 {% for category in categories %}
  8.                 <li><a href='/rango/category/{{category.slug}}'>{{ category.name}}</a></li>
  9.                
  10.                 {% if mostViewed %}
  11.                 <ul>
  12.                     {% for page in mostViewed.category%}
  13.                        
  14.                     <li>{{page}}</li>
  15.                     {% endfor %}
  16.                 </ul>
  17.                 {% else %}
  18.                 <strong>No Pages added yet!</strong>
  19.                 {% endif %}
  20.                 {% endfor %}
  21.             </ul>
  22.             {% else %}
  23.              <strong>There are no categories present.</strong>
  24.              {% endif %}
  25.             <a href="/rango/about">About</a><br>
  26. {% endblock %}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement