forked from data.coop/membersystem
6 lines
114 B
Python
6 lines
114 B
Python
from django.shortcuts import render_to_response
|
|
|
|
|
|
def index(request):
|
|
return render_to_response("index.html")
|