diff options
author | Philip Sargent <philip.sargent@gmail.com> | 2024-12-14 01:41:26 +0000 |
---|---|---|
committer | Philip Sargent <philip.sargent@gmail.com> | 2024-12-14 01:41:26 +0000 |
commit | 1d3b8d44b473c11c78743e6cb4631bbc20bdc9b1 (patch) | |
tree | bce4ddb24e5ea588dfd97ea6bd1c8cfe3acaa049 /templates/editcave.html | |
parent | cfc7a4b9f6de8d9df35fd2e4ad67e9330f6bfa90 (diff) | |
download | troggle-1d3b8d44b473c11c78743e6cb4631bbc20bdc9b1.tar.gz troggle-1d3b8d44b473c11c78743e6cb4631bbc20bdc9b1.tar.bz2 troggle-1d3b8d44b473c11c78743e6cb4631bbc20bdc9b1.zip |
More form layout chnages for Django v5
Diffstat (limited to 'templates/editcave.html')
-rw-r--r-- | templates/editcave.html | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/templates/editcave.html b/templates/editcave.html index 05fc243..28fcccc 100644 --- a/templates/editcave.html +++ b/templates/editcave.html @@ -54,14 +54,19 @@ and these same fields appear in the alternative file upload process as described {% endif %} {% include 'html_editor_pop_ups.html' %} -<!-- If you are looking for the furniture that creates the fields on this form, you need to look -at troggle/core/forms.py ass this uses a Django magic form creation thinggy. --> -<h2>{{message}}</h2> +<h2><!-- file saving error message if any -->{{message}}</h2> +<style> +# In Django v5 forms are rendered as <div> not as a table. The layout is different. +div > label { + display:block; + font-weight: bold; + margin-top: 5px; } +</style> <form action="" method="post">{% csrf_token %} - {% if tabletype == 'table' %}<table>{% else %}<div>{% endif %} + {% if tabletype == 'table' %}<table>{% endif %} {{ form }} - {% if tabletype == 'table' %}</table>{% else %}</div>{% endif %} + {% if tabletype == 'table' %}</table>{% endif %} <p><input style="font-weight: bold; font-size: 200%; font-variant-caps: small-caps; margin-left: 40%;" type="submit" value="Submit" /></p> </form> |