feat: Add animal cards to adoption display

This commit is contained in:
2024-03-20 16:40:52 +01:00
parent 2d67eb6ae9
commit c8dd7436fc
5 changed files with 68 additions and 8 deletions

View File

@@ -0,0 +1,18 @@
# Generated by Django 5.0.3 on 2024-03-20 15:39
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('fellchensammlung', '0003_remove_image_uploaded_by'),
]
operations = [
migrations.AlterField(
model_name='animal',
name='sex',
field=models.CharField(choices=[('M_N', 'neutered male'), ('M', 'male'), ('F_N', 'neutered female'), ('F', 'female')], max_length=20),
),
]