mirror of https://gitlab.crans.org/bde/nk20
removed diet filed
This commit is contained in:
parent
b92e6e4e10
commit
7552e55c8d
|
@ -1,6 +1,8 @@
|
|||
# Copyright (C) 2018-2024 by BDE ENS Paris-Saclay
|
||||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
import json
|
||||
|
||||
from functools import lru_cache
|
||||
|
||||
from django import forms
|
||||
|
|
|
@ -0,0 +1,17 @@
|
|||
# Generated by Django 4.2.15 on 2024-08-29 20:15
|
||||
|
||||
from django.db import migrations
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('wei', '0009_weiregistration_specific_diet'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.RemoveField(
|
||||
model_name='weiregistration',
|
||||
name='specific_diet',
|
||||
),
|
||||
]
|
|
@ -232,12 +232,6 @@ class WEIRegistration(models.Model):
|
|||
verbose_name=_("health issues"),
|
||||
)
|
||||
|
||||
specific_diet = models.TextField(
|
||||
blank=True,
|
||||
default="",
|
||||
verbose_name=_("specific diet"),
|
||||
)
|
||||
|
||||
emergency_contact_name = models.CharField(
|
||||
max_length=255,
|
||||
verbose_name=_("emergency contact name"),
|
||||
|
|
|
@ -25,12 +25,9 @@
|
|||
<dt class="col-xl-6">{% trans 'department'|capfirst %}</dt>
|
||||
<dd class="col-xl-6">{{ object.user.profile.get_department_display }}</dd>
|
||||
|
||||
<dt class="col-xl-6">{% trans 'health issues'|capfirst %}</dt>
|
||||
<dt class="col-xl-6">{% trans 'health issues or specific diet'|capfirst %}</dt>
|
||||
<dd class="col-xl-6">{{ object.health_issues|default:"—" }}</dd>
|
||||
|
||||
<dt class="col-xl-6">{% trans 'specific diet'|capfirst %}</dt>
|
||||
<dd class="col-xl-6">{{ object.specific_diet|default:"—" }}</dd>
|
||||
|
||||
<dt class="col-xl-6">{% trans 'suggested bus'|capfirst %}</dt>
|
||||
<dd class="col-xl-6">{{ survey.information.selected_bus_name }}</dd>
|
||||
</dl>
|
||||
|
|
|
@ -64,12 +64,9 @@ SPDX-License-Identifier: GPL-3.0-or-later
|
|||
<dt class="col-xl-6">{% trans 'birth date'|capfirst %}</dt>
|
||||
<dd class="col-xl-6">{{ registration.birth_date }}</dd>
|
||||
|
||||
<dt class="col-xl-6">{% trans 'health issues'|capfirst %}</dt>
|
||||
<dt class="col-xl-6">{% trans 'health issues or specific diet'|capfirst %}</dt>
|
||||
<dd class="col-xl-6">{{ registration.health_issues }}</dd>
|
||||
|
||||
<dt class="col-xl-6">{% trans 'specific diet'|capfirst %}</dt>
|
||||
<dd class="col-xl-6">{{ registration.specific_diet }}</dd>
|
||||
|
||||
<dt class="col-xl-6">{% trans 'emergency contact name'|capfirst %}</dt>
|
||||
<dd class="col-xl-6">{{ registration.emergency_contact_name }}</dd>
|
||||
|
||||
|
|
Loading…
Reference in New Issue