Skip to content

Latest commit

 

History

History
25 lines (13 loc) · 580 Bytes

README.md

File metadata and controls

25 lines (13 loc) · 580 Bytes

This is Django Project Assessment

- Create a fresh Django project and create an app.

- Create two models: Section and Student.

- Both the models should have 'name' property.

- A student must be related to a section using foreign key.

- A section can be related to many students.

- Create CRUD APIS using Django REST framework to:

-- List all sections

-- Create a section

-- View, update and delete a section

-- List all students within a section

-- Create student within a section

-- View, update and delete a student