diff options
author | Philip Sargent <philip.sargent@gmail.com> | 2023-02-10 00:05:04 +0000 |
---|---|---|
committer | Philip Sargent <philip.sargent@gmail.com> | 2023-02-10 00:05:04 +0000 |
commit | 709b720be9ee0abca7c4dbccb91dadb50da5725b (patch) | |
tree | d14b861940f40f2819b5aaf37e2e6c339287ffe2 /core/forms.py | |
parent | 19d9942676d56fa9289d0a24ec2c52c23437cf07 (diff) | |
download | troggle-709b720be9ee0abca7c4dbccb91dadb50da5725b.tar.gz troggle-709b720be9ee0abca7c4dbccb91dadb50da5725b.tar.bz2 troggle-709b720be9ee0abca7c4dbccb91dadb50da5725b.zip |
Update URLs to django documn version
Diffstat (limited to 'core/forms.py')
-rw-r--r-- | core/forms.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/forms.py b/core/forms.py index b20354f..b0b84c6 100644 --- a/core/forms.py +++ b/core/forms.py @@ -160,7 +160,7 @@ class EntranceForm(ModelForm): # This next line is called from the templates/edit_cave2.html template. # This is sufficient to create an entire entry for for the cave fields automatically # http://localhost:8000/cave/new/ -# using django built-in Deep Magic. https://docs.djangoproject.com/en/3.2/topics/forms/modelforms/ +# using django built-in Deep Magic. https://docs.djangoproject.com/en/dev/topics/forms/modelforms/ # for forms which map directly onto a Django Model CaveAndEntranceFormSet = modelformset_factory(CaveAndEntrance, exclude=("cave",)) |