New membership and accounting apps (contains just models) #5

Merged
benjaoming merged 6 commits from benjaoming/membersystem:membership_stuff into master 2019-08-31 16:55:27 +00:00
3 changed files with 0 additions and 7 deletions
Showing only changes of commit a22c2587dd - Show all commits

View file

@ -38,9 +38,6 @@ INSTALLED_APPS = [
'profiles', 'profiles',
'accounting', 'accounting',
'membership', 'membership',
'allauth',
'allauth.account',
] ]
MIDDLEWARE = [ MIDDLEWARE = [

View file

@ -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),
] ]

View file

@ -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