diff options
author | Philip Sargent <philip.sargent@gmail.com> | 2025-01-15 20:22:16 +0000 |
---|---|---|
committer | Philip Sargent <philip.sargent@gmail.com> | 2025-01-15 20:22:16 +0000 |
commit | 8db340fd62a6f7a96e780c86d393cdcbad8008d7 (patch) | |
tree | bf0673068f5e309c9a60fdddb9bd69b553473947 | |
parent | c5b08ce80f6ea17556bbc45844706c94a9b542e9 (diff) | |
download | troggle-8db340fd62a6f7a96e780c86d393cdcbad8008d7.tar.gz troggle-8db340fd62a6f7a96e780c86d393cdcbad8008d7.tar.bz2 troggle-8db340fd62a6f7a96e780c86d393cdcbad8008d7.zip |
more signup mods
-rw-r--r-- | core/views/signup.py | 4 | ||||
-rw-r--r-- | templates/signup.html | 3 |
2 files changed, 4 insertions, 3 deletions
diff --git a/core/views/signup.py b/core/views/signup.py index f390002..537f7fe 100644 --- a/core/views/signup.py +++ b/core/views/signup.py @@ -47,13 +47,15 @@ def signup(request): "medic_info":"None", "veggie": "mostly", "student": "no", + "top_tent_cap": 2, + "base_tent_cap": 3, }) return render( request, "signup.html", {"form": pageform, "year": "2025", "dates": "30th June - 3rd August", - "name": "", "kinname": ""}, + }, ) class ExpoSignupForm(forms.Form): diff --git a/templates/signup.html b/templates/signup.html index 138d95c..7eec178 100644 --- a/templates/signup.html +++ b/templates/signup.html @@ -21,7 +21,6 @@ Loser Expo 2025 SIGN-UP Form p.blocktext { margin-left: 48pt; margin-right: 48pt } div.blocktext { margin-left: 48pt; margin-right: 48pt } ul.blocktext { margin-left: 48pt; margin-right: 48pt } - ul {list-style: disc} ol.blocktext { margin-left: 48pt; margin-right: 48pt } h1 { font-size: 24pt; line-height: 100% } h2 { color: #009900 } @@ -128,7 +127,7 @@ Loser Expo 2025 SIGN-UP Form <h3>Tents</h3> <p>There will be two high camps in {{year}}:</p> - <ul> + <ul style="list-style: disc"> <li>the Stone Bridge site;</li> <li>the Garlic Cave site</li> </ul> |