2024-03-18 12:57:56 +00:00
|
|
|
from model_bakery.recipe import Recipe, seq
|
|
|
|
from fellchensammlung.models import *
|
|
|
|
|
|
|
|
location = Recipe(
|
|
|
|
Location,
|
2024-05-31 14:25:50 +00:00
|
|
|
place_id=seq(''),
|
|
|
|
name=seq('Location_'),
|
|
|
|
longitude=seq(""),
|
|
|
|
latitude=seq(""),
|
2024-03-18 12:57:56 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
rescue_org = Recipe(
|
|
|
|
RescueOrganization,
|
|
|
|
name=seq('Rattennothilfe_'),
|
|
|
|
location=location.make()
|
|
|
|
)
|
|
|
|
|
|
|
|
rat = Recipe(
|
|
|
|
Animal,
|
|
|
|
name=seq('Ratte_'),
|
|
|
|
)
|
|
|
|
|
|
|
|
cat = Recipe(
|
|
|
|
Animal,
|
|
|
|
name=seq('Katze_'),
|
|
|
|
)
|