ソースを参照

Use `pageurl` in locations index, rather than simple slug

Scot Hacker 8 年 前
コミット
be10bed28c
1 ファイル変更3 行追加3 行削除
  1. 3 3
      bakerydemo/templates/locations/locations_index_page.html

+ 3 - 3
bakerydemo/templates/locations/locations_index_page.html

@@ -1,5 +1,5 @@
 {% extends "base.html" %}
-{% load wagtailimages_tags %}
+{% load wagtailcore_tags %}
 
 {% block content-header %}
     {{ page.title }}
@@ -7,6 +7,6 @@
 
 {% block content-body %}
     {% for location in locations %}
-        <div><a href="{{ location.slug }}">{{ location.title }}</a></div>
+        <div><a href="{% pageurl location %}">{{ location.title }}</a></div>
     {% endfor %}
-{% endblock content-body %}
+{% endblock content-body %}