diff options
author | Philip Sargent <philip.sargent@klebos.com> | 2021-03-25 16:15:26 +0000 |
---|---|---|
committer | Philip Sargent <philip.sargent@klebos.com> | 2021-03-25 16:15:26 +0000 |
commit | 8723d62addda7200e26bd20c6aafb1532d1f832c (patch) | |
tree | 6cfdea724b74c9e9c086937b6be5a7d7dbc72b78 /templates/svxfilecavelist.html | |
parent | 213ada4ae92f6e97f7e159d7af93f8bf49f9dc67 (diff) | |
download | troggle-8723d62addda7200e26bd20c6aafb1532d1f832c.tar.gz troggle-8723d62addda7200e26bd20c6aafb1532d1f832c.tar.bz2 troggle-8723d62addda7200e26bd20c6aafb1532d1f832c.zip |
Survex files subdirectories displayed differently
Diffstat (limited to 'templates/svxfilecavelist.html')
-rw-r--r-- | templates/svxfilecavelist.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/svxfilecavelist.html b/templates/svxfilecavelist.html index 59f177f..f148b07 100644 --- a/templates/svxfilecavelist.html +++ b/templates/svxfilecavelist.html @@ -23,9 +23,9 @@ </td> </tr> -{% for primarycavefile, subcavefiles in subsurvdirs %} +{% for name, primarycavefile, subcavefiles in subsurvdirs %} <tr> - <td><a href="{% url "svx" primarycavefile.0 %}">{{primarycavefile.1}}</a></td> + <td><a href="{% url "svx" primarycavefile.0 %}">{{name}}</a></td> <td> {% for cavepath, cavename in subcavefiles %} <a href="{% url "svx" cavepath %}">{{cavename}}</a> |