Skip to content

Commit

Permalink
css
Browse files Browse the repository at this point in the history
  • Loading branch information
dwsds committed Nov 6, 2023
1 parent 51aba43 commit 1199617
Show file tree
Hide file tree
Showing 323 changed files with 93,624 additions and 77 deletions.
Binary file modified app1/__pycache__/forms.cpython-311.pyc
Binary file not shown.
Binary file modified app1/__pycache__/views.cpython-311.pyc
Binary file not shown.
4 changes: 4 additions & 0 deletions app1/forms.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

class IllnessForm(forms.Form):
metabolic_stress = forms.MultipleChoiceField(
label="Any previous illnesses?",
widget=forms.CheckboxSelectMultiple,
choices=[("Mental illness", "Mental illness"),
("Minor surgery", "Minor surgery"),
Expand All @@ -28,6 +29,7 @@ class IllnessForm(forms.Form):
)
class DietChangeForm(forms.Form):
changes = forms.MultipleChoiceField(
label="Any recent changes you've made to your diet?",
widget=forms.CheckboxSelectMultiple,
choices=[("sub-optimal solid diet","sub-optimal solid diet"),
("Taking liquids only","Taking liquids only"),
Expand All @@ -39,6 +41,7 @@ class DietChangeForm(forms.Form):

class GastrSymptomsForm(forms.Form):
symptoms = forms.MultipleChoiceField(
label="Any Gastrointestinal Symptoms you face?",
widget=forms.CheckboxSelectMultiple,
choices=[
("Nausea", "Nausea"),
Expand All @@ -51,6 +54,7 @@ class GastrSymptomsForm(forms.Form):

class PhysicalForm(forms.Form):
phy_illness = forms.MultipleChoiceField(
label="Any Physical problems?",
widget=forms.CheckboxSelectMultiple,
choices=[("Edema","Edema"),
("Muscle Wasting","Muscle Wasting"),
Expand Down
Loading

0 comments on commit 1199617

Please sign in to comment.