mirror of
https://github.com/Southampton-RSG/breccia-mapper.git
synced 2026-03-03 03:17:07 +00:00
57 lines
1.7 KiB
Python
57 lines
1.7 KiB
Python
"""
|
|
Forms for creating / updating models belonging to the 'people' app.
|
|
"""
|
|
from django import forms
|
|
|
|
from . import models
|
|
|
|
|
|
class PersonForm(forms.ModelForm):
|
|
"""
|
|
Form for creating / updating an instance of :class:`Person`.
|
|
"""
|
|
class Meta:
|
|
model = models.Person
|
|
exclude = [
|
|
'user',
|
|
'relationship_targets',
|
|
]
|
|
|
|
|
|
class RelationshipForm(forms.ModelForm):
|
|
"""
|
|
Form to allow users to describe a relationship - includes :class:`RelationshipQuestion`s.
|
|
|
|
Dynamic fields inspired by https://jacobian.org/2010/feb/28/dynamic-form-generation/
|
|
"""
|
|
class Meta:
|
|
model = models.Relationship
|
|
fields = [
|
|
'source',
|
|
'target',
|
|
]
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
super().__init__(*args, **kwargs)
|
|
|
|
for question in models.RelationshipQuestion.objects.all():
|
|
# Get choices from model and add default 'not selected' option
|
|
choices = question.choices + [['', '---------']]
|
|
|
|
field = forms.ChoiceField(label=question,
|
|
choices=choices)
|
|
self.fields['question_{}'.format(question.pk)] = field
|
|
|
|
def save(self, commit=True) -> models.Relationship:
|
|
# Save Relationship model
|
|
self.instance = super().save(commit=commit)
|
|
|
|
if commit:
|
|
# Save answers to relationship questions
|
|
for key, value in self.cleaned_data.items():
|
|
if key.startswith('question_'):
|
|
answer = models.RelationshipQuestionChoice.objects.get(pk=value)
|
|
self.instance.question_answers.add(answer)
|
|
|
|
return self.instance
|