Commit f04fd181 authored by nheoxoz's avatar nheoxoz

migrated new models after merging all v2 branches to main

parent 7adaa407
No preview for this file type
...@@ -32,7 +32,7 @@ ...@@ -32,7 +32,7 @@
<a href="/assignments/" class="link">Assignments</a> <a href="/assignments/" class="link">Assignments</a>
</button><br> </button><br>
<button type="button" class="btn"> <button type="button" class="btn">
<a href="/widget_calendar/" class="link">Calendar</a> <a href="/calendar/" class="link">Calendar</a>
</button> </button>
{% endblock %} {% endblock %}
# Generated by Django 4.1.7 on 2023-05-14 07:08
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
('assignments', '0001_initial'),
]
operations = [
migrations.RenameField(
model_name='assignment',
old_name='assignment_name',
new_name='name',
),
]
# Generated by Django 4.1.7 on 2023-05-14 07:08
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('forum', '0002_alter_reply_forumpost'),
]
operations = [
migrations.AlterField(
model_name='forumpost',
name='pub_datetime',
field=models.DateTimeField(auto_now=True),
),
]
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