forked from data.coop/membersystem
Mikkel Munch Mortensen
1a66dbff3a
* Django * django-money * pre-commit Also fix a few minor issues: * Front page was broken, as `render_to_response` is no longer in Django, but replaced by `render`. * Base template had a link to a "change e-mail" page that no longer exists. Linking to "change password" instead. At least for now.
6 lines
99 B
Python
6 lines
99 B
Python
from django.shortcuts import render
|
|
|
|
|
|
def index(request):
|
|
return render(request, "index.html")
|