parent
c6d6251556
commit
e8f7a53c01
2 changed files with 20 additions and 0 deletions
|
@ -55,6 +55,7 @@ class BirdEditForm(forms.ModelForm):
|
||||||
"sent_to",
|
"sent_to",
|
||||||
"find_circumstances",
|
"find_circumstances",
|
||||||
"diagnostic_finding",
|
"diagnostic_finding",
|
||||||
|
"comment",
|
||||||
]
|
]
|
||||||
labels = {
|
labels = {
|
||||||
"bird": _("Vogel"),
|
"bird": _("Vogel"),
|
||||||
|
@ -66,4 +67,5 @@ class BirdEditForm(forms.ModelForm):
|
||||||
"sent_to": _("Übermittelt nach"),
|
"sent_to": _("Übermittelt nach"),
|
||||||
"find_circumstances": _("Fundumstände"),
|
"find_circumstances": _("Fundumstände"),
|
||||||
"diagnostic_finding": _("Diagnose bei Fund"),
|
"diagnostic_finding": _("Diagnose bei Fund"),
|
||||||
|
"comment": _("Bermerkung"),
|
||||||
}
|
}
|
||||||
|
|
18
app/bird/migrations/0004_alter_fallenbird_comment.py
Normal file
18
app/bird/migrations/0004_alter_fallenbird_comment.py
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
# Generated by Django 4.2.4 on 2023-08-26 08:28
|
||||||
|
|
||||||
|
from django.db import migrations, models
|
||||||
|
|
||||||
|
|
||||||
|
class Migration(migrations.Migration):
|
||||||
|
|
||||||
|
dependencies = [
|
||||||
|
('bird', '0003_fallenbird_comment'),
|
||||||
|
]
|
||||||
|
|
||||||
|
operations = [
|
||||||
|
migrations.AlterField(
|
||||||
|
model_name='fallenbird',
|
||||||
|
name='comment',
|
||||||
|
field=models.TextField(blank=True, null=True, verbose_name='Bemerkung'),
|
||||||
|
),
|
||||||
|
]
|
Loading…
Add table
Add a link
Reference in a new issue