-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #305 from d120/updating_dependencies
Updating dependencies
- Loading branch information
Showing
12 changed files
with
84 additions
and
58 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
coverage==6.3.3 | ||
Django==2.2.28 | ||
django-debug-toolbar==3.2.4 | ||
docutils==0.20.1 | ||
freezegun==1.2.2 | ||
django-formtools==2.3 | ||
Django==5.1 | ||
django-debug-toolbar==4.4.6 | ||
docutils==0.21.2 | ||
freezegun==1.5.1 | ||
django-formtools==2.5.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Generated by Django 3.0.14 on 2024-08-17 23:46 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('feedback', '0051_auto_20230604_1734'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name='importveranstaltung', | ||
name='typ', | ||
field=models.CharField(choices=[('v', 'Vorlesung'), ('vu', 'Vorlesung mit Übung'), ('pr', 'Praktikum'), ('se', 'Seminar')], max_length=2), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
# coding=utf-8 | ||
|
||
from django.conf.urls import url | ||
from django.urls import re_path | ||
from feedback.views import redirect | ||
|
||
urlpatterns = [ | ||
url(r'^redirect/$', redirect, | ||
re_path(r'^redirect/$', redirect, | ||
{'redirect_to': 'http://www.d120.de/'}), | ||
url(r'^redirect/(?P<tail>.*)$', redirect, | ||
re_path(r'^redirect/(?P<tail>.*)$', redirect, | ||
{'redirect_to': 'http://www.d120.de/'}), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -34,6 +34,8 @@ | |
# system time zone. | ||
TIME_ZONE = 'Europe/Berlin' | ||
|
||
USE_TZ = False # before django 5.0 USE_TZ was default False | ||
|
||
# Language code for this installation. All choices can be found here: | ||
# http://www.i18nguy.com/unicode/language-identifiers.html | ||
LANGUAGE_CODE = 'de-DE' | ||
|
@@ -203,6 +205,8 @@ | |
DEFAULT_FROM_EMAIL = "Feedback-Team <[email protected]>" | ||
SERVER_EMAIL = DEFAULT_FROM_EMAIL | ||
|
||
DEFAULT_AUTO_FIELD = 'django.db.models.AutoField' | ||
|
||
USERNAME_VERANSTALTER = 'veranstalter' | ||
|
||
# for debug toolbar | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters