aboutsummaryrefslogtreecommitdiff
path: root/accounts/views.py
diff options
context:
space:
mode:
authorMike Crute <mcrute@gmail.com>2012-12-04 16:21:32 -0500
committerMike Crute <mcrute@gmail.com>2012-12-11 15:27:46 -0500
commitbd95993653a1b94d07316e24a0f519d00f9359d6 (patch)
tree45f44092fde26ad38db1aaaf123d7e2173fa973e /accounts/views.py
parentab626f31a0645d87560d242a20dd60e01b3d3b46 (diff)
downloaddjango-precompiler-bd95993653a1b94d07316e24a0f519d00f9359d6.tar.bz2
django-precompiler-bd95993653a1b94d07316e24a0f519d00f9359d6.tar.xz
django-precompiler-bd95993653a1b94d07316e24a0f519d00f9359d6.zip
User can login and logout
Diffstat (limited to 'accounts/views.py')
-rw-r--r--accounts/views.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/accounts/views.py b/accounts/views.py
new file mode 100644
index 0000000..2616923
--- /dev/null
+++ b/accounts/views.py
@@ -0,0 +1,5 @@
1from django.shortcuts import render
2
3
4def profile(request):
5 return render(request, "accounts/profile.html")