übernahme rescuer to finder

This commit is contained in:
Gunther Weissenbaeck 2023-10-10 12:05:23 +02:00
parent 3a3bcea588
commit 5a5f7dae9e
5 changed files with 173 additions and 1 deletions

View file

@ -25,8 +25,8 @@ class BirdAddForm(forms.ModelForm):
"place",
"find_circumstances",
"diagnostic_finding",
"comment",
"finder",
"comment",
]
labels = {
"bird_identifier": _("Kennung"),
@ -57,6 +57,7 @@ class BirdEditForm(forms.ModelForm):
"sent_to",
"find_circumstances",
"diagnostic_finding",
"finder",
"comment",
]
labels = {
@ -69,5 +70,6 @@ class BirdEditForm(forms.ModelForm):
"sent_to": _("Übermittelt nach"),
"find_circumstances": _("Fundumstände"),
"diagnostic_finding": _("Diagnose bei Fund"),
"finder": _("Finder"),
"comment": _("Bermerkung"),
}

View file

@ -0,0 +1,18 @@
# Generated by Django 4.2.6 on 2023-10-10 06:34
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('bird', '0001_initial'),
]
operations = [
migrations.AlterField(
model_name='fallenbird',
name='comment',
field=models.TextField(blank=True, null=True, verbose_name='Bemerkung'),
),
]