mirror of
https://github.com/lemeow125/Ivy-Backend.git
synced 2024-11-17 06:39:26 +08:00
12 lines
382 B
Python
12 lines
382 B
Python
from rest_framework import serializers
|
|
from .models import Product
|
|
|
|
|
|
class ProductSerializer(serializers.HyperlinkedModelSerializer):
|
|
date_added = serializers.DateTimeField(
|
|
format="%d-%m-%Y %I:%M%p", read_only=True)
|
|
|
|
class Meta:
|
|
model = Product
|
|
fields = ('name', 'quantity', 'date_added')
|
|
read_only_fields = ('id', 'date_added')
|