New membership and accounting apps (contains just models) #5
|
@ -38,9 +38,6 @@ INSTALLED_APPS = [
|
||||||
'profiles',
|
'profiles',
|
||||||
'accounting',
|
'accounting',
|
||||||
'membership',
|
'membership',
|
||||||
|
|
||||||
'allauth',
|
|
||||||
'allauth.account',
|
|
||||||
]
|
]
|
||||||
|
|
||||||
MIDDLEWARE = [
|
MIDDLEWARE = [
|
||||||
|
|
|
@ -1,10 +1,7 @@
|
||||||
"""URLs for the membersystem"""
|
"""URLs for the membersystem"""
|
||||||
from django.conf.urls import url
|
|
||||||
from django.contrib import admin
|
from django.contrib import admin
|
||||||
from django.urls import include
|
|
||||||
from django.urls import path
|
from django.urls import path
|
||||||
|
|
||||||
urlpatterns = [
|
urlpatterns = [
|
||||||
url(r'^accounts/', include('allauth.urls')),
|
|
||||||
path('admin/', admin.site.urls),
|
path('admin/', admin.site.urls),
|
||||||
]
|
]
|
||||||
|
|
|
@ -1,3 +1,2 @@
|
||||||
Django==2.0.6
|
Django==2.0.6
|
||||||
django-allauth==0.36.0
|
|
||||||
django-money==0.14
|
django-money==0.14
|
||||||
|
|
Loading…
Reference in a new issue