mirror of
https://github.com/lemeow125/InfoTech-Backend.git
synced 2024-11-17 06:29:26 +08:00
13 lines
399 B
Python
13 lines
399 B
Python
from rest_framework import serializers
|
|
from django.contrib.auth.models import User
|
|
from .models import Subject
|
|
from students.models import Student
|
|
|
|
|
|
class SubjectSerializer(serializers.HyperlinkedModelSerializer):
|
|
|
|
class Meta:
|
|
model = Subject
|
|
fields = ('id', 'name', 'code',
|
|
'max_slots', 'year_level', 'semester')
|
|
read_only_fields = ['id']
|