mirror of
https://github.com/bspeice/Melodia
synced 2024-11-16 04:58:20 -05:00
bcfbd7bc60
Contains app-specific URL handling, and initial static resources (bootstrap, jquery 1.9, jquery-ui 1.10 included)
7 lines
232 B
Python
7 lines
232 B
Python
from django.http import HttpResponse
|
|
from django.template import RequestContext
|
|
from django.shortcuts import render_to_response
|
|
|
|
def main(request):
|
|
return render_to_response("main.html", context_instance = RequestContext(request))
|