1
0
mirror of https://github.com/bspeice/Melodia synced 2025-07-02 06:15:55 -04:00

Initial web app commit

Contains app-specific URL handling, and initial static resources
	(bootstrap, jquery 1.9, jquery-ui 1.10 included)
This commit is contained in:
Bradlee Speice
2013-01-18 23:17:55 -05:00
parent f601f0834a
commit bcfbd7bc60
16 changed files with 9584 additions and 1 deletions

0
web/views/__init__.py Normal file
View File

6
web/views/login_page.py Normal file
View File

@ -0,0 +1,6 @@
from django.http import HttpResponse
from django.template import RequestContext
from django.shortcuts import render_to_response
def login_page(request):
return render_to_response("login.html", context_instance = RequestContext(request))

6
web/views/main.py Normal file
View File

@ -0,0 +1,6 @@
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))