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

Initial web pages commit

Contains new templates, assets, url mappings, and views. A lot changed.
This commit is contained in:
Bradlee Speice
2013-01-24 13:44:43 -05:00
parent ff95b1072e
commit c1bd19041a
18 changed files with 2275 additions and 4795 deletions

View File

View File

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

View File

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