Initial commit

This commit is contained in:
Trever Fischer
2012-02-17 15:04:42 -05:00
commit 548de830f0
14 changed files with 150 additions and 0 deletions

7
minecraft/views.py Normal file
View File

@@ -0,0 +1,7 @@
from django.contrib.auth.decorators import login_required
from django.shortcuts import render_to_response
from django.template import RequestContext
@login_required
def profile(request):
return render_to_response('minecraft/profile.html', context_instance = RequestContext(request))