list of organizations by province - some changes in quota an models of that

This commit is contained in:
2025-06-10 14:53:01 +03:30
parent 2482b9bc45
commit b52baa5d3b
5 changed files with 88 additions and 6 deletions

View File

@@ -23,7 +23,8 @@ class CitySerializer(serializers.ModelSerializer):
model = City
fields = [
'id',
'name'
'name',
'province'
]
@@ -34,7 +35,7 @@ class ProvinceSerializer(serializers.ModelSerializer):
model = Province
fields = [
'id',
'name'
'name',
]