Commit 68c2af57 authored by Ciella's avatar Ciella

Created Assignments app and configurated Django project files for the app

parent 1f9aed7e
from django.contrib import admin
# Register your models here.
from django.apps import AppConfig
class AssignmentsConfig(AppConfig):
default_auto_field = 'django.db.models.BigAutoField'
name = 'assignments'
from django.db import models
# Create your models here.
from django.test import TestCase
# Create your tests here.
from django.shortcuts import render
# Create your views here.
\ No newline at end of file
......@@ -44,7 +44,7 @@ INSTALLED_APPS = [
'dashboard',
#for announcement board
#for forum
#for assignments
'assignments',
#for calendar
]
......
......@@ -21,6 +21,6 @@ urlpatterns = [
path('dashboard/', include('dashboard.urls', namespace='dashboard')),
#for announcement board
#for forum
#for assignments
path('assignments/', include('assignments.urls', namespace='assignments')),
#for calendar
]
]
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment