An open API service indexing awesome lists of open source software.

https://github.com/profjordanov/learning-system

Web application that helps organizing and keep information about students and courses.
https://github.com/profjordanov/learning-system

asp-net-core asp-net-mvc courses learning-system students

Last synced: over 1 year ago
JSON representation

Web application that helps organizing and keep information about students and courses.

Awesome Lists containing this project

README

          

# Learning System

## Web application that helps organizing and keep information about students and courses.

-> Models

• Students – have username, name, email, password and birthdate, list of courses.

• Courses – have name, description, trainer (registered user with role trainer), start date, end date, list of students.

• Articles – have title, content, publish date and author.

-> Roles

• Guest (unregistered users) – can view all courses and their details

• Student – That is the regular registered user. Can sign up to any course of their choice.

• Trainer – can assesses students in a course that he is set as trainer.

• Blog author – can publish articles in the blog.

• Administrator – can create new courses or edit existing ones and set roles to all users.

-> Areas

• Admin – accessible only by administrators where they can create new courses or set roles to users.

• Blog – accessible by all registered users in any role. Blog authors can publish new articles.

-> Features

• Home page should show a list of all courses

• Users can register by providing username, name, email, password and birthdate or alternatively by creating account with their Facebook or Google profile.

• Registered users can sign up to any course

• Registered users can sign up/out of course before its start date

• Registered users can read all articles from the blog

• Each user should have Profile page. The profile page should contain list of the courses the user has signed up and grade of that course.

• Registered users can edit their profile

• Trainer of a course can place grades to each student signed up to it. Grades can be A, B, C, D, E or F (from highest to lowest)

• Trainer can assess a student for a course only when the course is over.

• Blog authors can publish articles in the blog. Once published the article cannot be modified.