Advertisement
Guest User

Untitled

a guest
Mar 28th, 2017
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. <p>カテゴリー</p>
  2. <ul>
  3. {% for category in categories %}
  4. <li><a href="{% url 'index' category.slug %}">{{ category.name }}</a></li>
  5. {% endfor %}
  6. </ul>
  7.  
  8. <p>場所</p>
  9. <ul>
  10. {% for location in locations %}
  11. <li><a href="{% url 'index' location.slug %}">{{ location.name }}</a></li>
  12. {% endfor %}
  13. </ul>
  14.  
  15. <li><a href="{% url 'index' category.slug location.slug %}">{{ location.name }}</a></li>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement