static files

This commit is contained in:
Martin Quarda 2024-02-07 07:46:15 +01:00
parent e439dc7618
commit e6d52f75a9
2 changed files with 5 additions and 1 deletions

View File

@ -119,6 +119,8 @@ USE_TZ = True
STATIC_URL = 'static/'
STATIC_ROOT = BASE_DIR / 'static'
# Default primary key field type
# https://docs.djangoproject.com/en/4.2/ref/settings/#default-auto-field

View File

@ -1,3 +1,5 @@
from django.contrib import admin
from .models import User
# Register your models here.
admin.site.register(User)