Fixed the login/out links on the default website. Cleaned up some template lookups.
This commit is contained in:
parent
4fd06b8976
commit
9ddd0ecf33
2 changed files with 5 additions and 6 deletions
|
|
@ -53,7 +53,7 @@ def page_index(request):
|
|||
"num_others": nothers or "no"
|
||||
}
|
||||
|
||||
return render(request, 'website/index.html', pagevars)
|
||||
return render(request, 'index.html', pagevars)
|
||||
|
||||
|
||||
def to_be_implemented(request):
|
||||
|
|
@ -66,7 +66,7 @@ def to_be_implemented(request):
|
|||
"page_title": "To Be Implemented...",
|
||||
}
|
||||
|
||||
return render(request, 'website/tbi.html', pagevars)
|
||||
return render(request, 'tbi.html', pagevars)
|
||||
|
||||
|
||||
@staff_member_required
|
||||
|
|
@ -75,7 +75,7 @@ def evennia_admin(request):
|
|||
Helpful Evennia-specific admin page.
|
||||
"""
|
||||
return render(
|
||||
request, 'website/evennia_admin.html', {
|
||||
request, 'evennia_admin.html', {
|
||||
'playerdb': PlayerDB})
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue