Skip to content

Commit c046f1d

Browse files
committed
apps moved to main folder
1 parent af7a17c commit c046f1d

33 files changed

+17
-24
lines changed
File renamed without changes.
File renamed without changes.

accounts/apps.py renamed to task_manager/accounts/apps.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33

44
class AccountsConfig(AppConfig):
55
default_auto_field = 'django.db.models.BigAutoField'
6-
name = 'accounts'
6+
name = 'task_manager.accounts'
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

accounts/views.py renamed to task_manager/accounts/views.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
from django.urls import reverse_lazy
99
from django.views.generic import CreateView
1010

11-
from tasks.models import Task
1211
from .forms import CustomUserCreationForm
1312

1413

task_manager/settings.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,9 @@
4242
'django.contrib.messages',
4343
'django.contrib.staticfiles',
4444
'django_bootstrap5',
45-
'accounts',
46-
'tasks',
47-
'statuses',
45+
'task_manager.accounts',
46+
'task_manager.tasks',
47+
'task_manager.statuses',
4848
]
4949

5050
MIDDLEWARE = [

0 commit comments

Comments
 (0)