diff options
author | Philip Sargent <philip.sargent@gmail.com> | 2025-02-13 17:30:40 +0000 |
---|---|---|
committer | Philip Sargent <philip.sargent@gmail.com> | 2025-02-13 17:30:40 +0000 |
commit | 9fd86dc0c4576259028d2666c5360d1d60d380b0 (patch) | |
tree | c5438d59c659b97133079e4c80360debd75e15d0 /templates | |
parent | ae36f1a9ce53f15cd083e4b5e8b7cf14be0208af (diff) | |
download | troggle-9fd86dc0c4576259028d2666c5360d1d60d380b0.tar.gz troggle-9fd86dc0c4576259028d2666c5360d1d60d380b0.tar.bz2 troggle-9fd86dc0c4576259028d2666c5360d1d60d380b0.zip |
cookie and logon working nicely together: cave & entrance
Diffstat (limited to 'templates')
-rw-r--r-- | templates/editentrance.html | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/templates/editentrance.html b/templates/editentrance.html index 957351f..d9957a0 100644 --- a/templates/editentrance.html +++ b/templates/editentrance.html @@ -35,16 +35,19 @@ at troggle/core/forms.py ass this uses a Django magic form creation thinggy. --> <li>Read the <a href="/handbook/survey/coord2.html#summary">brief explanation</a> of location data in the handbook. </ul> +{% if ent.bearings %} +<br /> +<label for="id_bearings">Bearings (obsolete):</label> +{{ent.bearings|safe}} +{% endif %} + {% if entlettereditable %} <table>{{ entletterform }}</table> {% else %} <table><tr><th>Entrance Letter</th><td>{{ entletter }}</td></table> {% endif %} <table>{{ entform }} -{% if ent.bearings %} -<tr><th><label for="id_bearings">Bearings (obsolete):</label></th><td> -{{ent.bearings|safe}}</td></tr> -{% endif %} + </table> <p><input style="font-weight: bold; font-size: 200%; font-variant-caps: small-caps; margin-left: 40%;" type="submit" value="Submit" /></p> </form> |