17 lines
No EOL
550 B
Python
17 lines
No EOL
550 B
Python
from django.forms import ModelForm, ModelMultipleChoiceField
|
|
|
|
from multiupload.fields import MultiFileField
|
|
|
|
from .models import Dream, Theme
|
|
|
|
class DreamForm(ModelForm):
|
|
uploads = MultiFileField(required=False)
|
|
themes = ModelMultipleChoiceField(queryset=Theme.objects.all(), required=False)
|
|
|
|
class Meta:
|
|
model = Dream
|
|
fields = ["timestamp", "mood", "title", "content", 'type', 'wet', 'lucid']
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
super().__init__(*args, **kwargs)
|
|
self.fields["mood"].required = False |