Commit 4e8e7622 authored by Star Neptune R. Sy's avatar Star Neptune R. Sy

minor changes to make everything cohesive

parent 96ea2992
...@@ -17,6 +17,8 @@ and Neptune Sy.; ...@@ -17,6 +17,8 @@ and Neptune Sy.;
https://www.w3schools.com/html/html_css.asp https://www.w3schools.com/html/html_css.asp
https://www.w3schools.com/html/html_styles.asp https://www.w3schools.com/html/html_styles.asp
https://github.com/github/gitignore/blob/main/Python.gitignore; https://github.com/github/gitignore/blob/main/Python.gitignore;
https://www.onespacemedia.com/news/getting-started-generic-class-based-views-django/
(sgd) Joaquin Crisologo, 28 February, 2023 (sgd) Joaquin Crisologo, 28 February, 2023
(sgd) Andrew Idquival, 28 February, 2023 (sgd) Andrew Idquival, 28 February, 2023
(sgd) Jayson Lim, 28 February, 2023 (sgd) Jayson Lim, 28 February, 2023
......
# Generated by Django 3.2 on 2023-04-29 09:12
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('assignments', '0002_alter_course_course_code'),
]
operations = [
migrations.AlterField(
model_name='assignment',
name='passing_score',
field=models.IntegerField(default=80),
),
migrations.AlterField(
model_name='assignment',
name='perfect_score',
field=models.IntegerField(default=100),
),
migrations.AlterField(
model_name='assignment',
name='section',
field=models.CharField(max_length=16),
),
]
# Generated by Django 3.2 on 2023-04-29 09:12
import datetime
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('widget_calendar', '0007_alter_event_target_datetime'),
]
operations = [
migrations.AlterField(
model_name='event',
name='target_datetime',
field=models.DateTimeField(default=datetime.datetime(2023, 4, 29, 17, 12, 10, 865421)),
),
]
...@@ -62,7 +62,7 @@ ROOT_URLCONF = 'widget_vincentdjango.urls' ...@@ -62,7 +62,7 @@ ROOT_URLCONF = 'widget_vincentdjango.urls'
TEMPLATES = [ TEMPLATES = [
{ {
'BACKEND': 'django.template.backends.django.DjangoTemplates', 'BACKEND': 'django.template.backends.django.DjangoTemplates',
'DIRS': [], 'DIRS': [os.path.join(BASE_DIR, 'templates')],
'APP_DIRS': True, 'APP_DIRS': True,
'OPTIONS': { 'OPTIONS': {
'context_processors': [ 'context_processors': [
......
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