Compare commits
1 Commits
1da5447a16
...
6f21d12ac9
Author | SHA1 | Date | |
---|---|---|---|
6f21d12ac9 |
|
@ -1,3 +1,16 @@
|
||||||
from django.shortcuts import render
|
#!/usr/bin/env python3
|
||||||
|
"""
|
||||||
|
/user app views.
|
||||||
|
"""
|
||||||
|
from django.http import HttpResponse
|
||||||
|
from django.shortcuts import redirect, render
|
||||||
|
from django.core.exceptions import ObjectDoesNotExist
|
||||||
|
|
||||||
# Create your views here.
|
from .models import User
|
||||||
|
from quest.models import Quest
|
||||||
|
|
||||||
|
def index(request):
|
||||||
|
"""
|
||||||
|
The user index page.
|
||||||
|
"""
|
||||||
|
return HttpResponse("Hello, world. You're at the user index.")
|
||||||
|
|
Loading…
Reference in New Issue
Block a user