From ae3fe8cd423be5268d630a498361e376c6add776 Mon Sep 17 00:00:00 2001 From: substantialnoninfringinguser Date: Thu, 2 Jul 2009 20:43:18 +0100 Subject: [svn] Renaming troggle.expo to troggle.core. To do this, used: perl -p -i -e "s/expo(?=[\s\.']+)/core/g" `find -name \*.py` and then manually checked each change (had to remove a couple) --- core/forms.py | 48 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 core/forms.py (limited to 'core/forms.py') diff --git a/core/forms.py b/core/forms.py new file mode 100644 index 0000000..929c4e9 --- /dev/null +++ b/core/forms.py @@ -0,0 +1,48 @@ +from django.forms import ModelForm +from models import Cave, Person, LogbookEntry, QM +import django.forms as forms +from django.forms.formsets import formset_factory +from django.contrib.admin.widgets import AdminDateWidget +import string +from datetime import date + +class CaveForm(ModelForm): + class Meta: + model = Cave + +class PersonForm(ModelForm): + class Meta: + model = Person + +class LogbookEntryForm(ModelForm): + class Meta: + model = LogbookEntry + + def wikiLinkHints(LogbookEntry=None): + """ + This function returns html-formatted paragraphs for each of the + wikilink types that are related to this logbookentry. Each paragraph + contains a list of all of the related wikilinks. + + Perhaps an admin javascript solution would be better. + """ + res = ["Please use the following wikilinks, which are related to this logbook entry:"] + + res.append(r'

QMs found:') + for QM in LogbookEntry.instance.QMs_found.all(): + res.append(QM.wiki_link()) + + res.append(r'

QMs ticked off:') + for QM in LogbookEntry.instance.QMs_ticked_off.all(): + res.append(QM.wiki_link()) + +# res.append(r'

People') +# for persontrip in LogbookEntry.instance.persontrip_set.all(): +# res.append(persontrip.wiki_link()) +# res.append(r'

') + + return string.join(res, r'
') + + def __init__(self, *args, **kwargs): + super(LogbookEntryForm, self).__init__(*args, **kwargs) + self.fields['text'].help_text=self.wikiLinkHints() \ No newline at end of file -- cgit v1.2.3