diff options
author | Martin <devnull@localhost> | 2012-08-14 22:51:15 +0200 |
---|---|---|
committer | Martin <devnull@localhost> | 2012-08-14 22:51:15 +0200 |
commit | 25a73c4ab7a23d87621c0d90b9c26c69361e8a6a (patch) | |
tree | 6290339cc911e049d74bd061b6f9f810482af15e /templates/cave_entrances.html | |
parent | 28047277f1fb0679c3b94bb5a14d2384a94cc27f (diff) | |
download | troggle-25a73c4ab7a23d87621c0d90b9c26c69361e8a6a.tar.gz troggle-25a73c4ab7a23d87621c0d90b9c26c69361e8a6a.tar.bz2 troggle-25a73c4ab7a23d87621c0d90b9c26c69361e8a6a.zip |
Bug fixing of cave and entrance forms removal of slugs
Diffstat (limited to 'templates/cave_entrances.html')
-rw-r--r-- | templates/cave_entrances.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/cave_entrances.html b/templates/cave_entrances.html index 6468ebc..cb58a0a 100644 --- a/templates/cave_entrances.html +++ b/templates/cave_entrances.html @@ -7,7 +7,7 @@ {{ ent.entrance_letter|safe }} {% if ent.entrance.name %} {{ ent.entrance.name|safe }} - {% endif %}<a href="{% url editentrance ent.entrance.slug %}">Edit</a> + {% endif %}<a href="{% url editentrance cave.slug ent.entrance.slug %}">Edit</a> <dl> {% if ent.entrance.marking %} <dt>Marking</dt><dd>{{ ent.entrance.marking_val|safe }}</dd> @@ -67,5 +67,5 @@ </ul> {% endif %}</p> -<a href="{% url newentrance %}">New Entrance</a> +<a href="{% url newentrance cave.slug %}">New Entrance</a> </div> |