diff options
author | Philip Sargent <philip.sargent@gmail.com> | 2024-06-29 08:55:14 +0300 |
---|---|---|
committer | Philip Sargent <philip.sargent@gmail.com> | 2024-06-29 10:31:45 +0300 |
commit | 6d16f8f7caf11bb01d6c6bf3c731db58a8e3276d (patch) | |
tree | 12b80487ea086d9ffa336d7a902195016952c03a /templates/menu.html | |
parent | 09dbe5b14b2d85417aaebf4e6969135e554594c7 (diff) | |
download | troggle-6d16f8f7caf11bb01d6c6bf3c731db58a8e3276d.tar.gz troggle-6d16f8f7caf11bb01d6c6bf3c731db58a8e3276d.tar.bz2 troggle-6d16f8f7caf11bb01d6c6bf3c731db58a8e3276d.zip |
fixing cave slug <caveslug> issues
Diffstat (limited to 'templates/menu.html')
-rw-r--r-- | templates/menu.html | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/templates/menu.html b/templates/menu.html index 6728abe..654cd97 100644 --- a/templates/menu.html +++ b/templates/menu.html @@ -51,7 +51,8 @@ <input type=submit value="Search"></form></li> {% if editable %}<li><a href="{% if local %}https://expo.survex.com{% endif %}{% url "editexpopage" path %}" class="editlink"><strong>Edit this page</strong></a></li>{% endif %} {% if cave_editable %}<li><a href="{% if local %}https://expo.survex.com{% endif %}{% url "edit_cave" cave.url_parent cave.slug %}" class="editlink"><strong>Edit this cave</strong></a></li>{% endif %} -<li> {% if settings.DEVSERVER %}<b style="color:red">RUNNING ON LOCALSERVER</b>{% endif %} +<li> {% if settings.DEVSERVER %}<b style="color:red">RUNNING ON LOCALSERVER</b> <br>slug:{{ cave.slug }}<br>newslug:{{ cave.newslug }}<br>url:{{ cave.url }}{% endif %} </ul> </div> {% endif %} + |