change livestock types weight

This commit is contained in:
2025-07-14 11:38:46 +03:30
parent 2c0e55a616
commit a5ce81efe7
4 changed files with 31 additions and 1 deletions

View File

@@ -9,7 +9,8 @@ class LiveStockTypeSerializer(serializers.ModelSerializer):
model = livestock_models.LiveStockType
fields = [
'id',
'name'
'name',
'weight_type'
]