Added initial commit

This commit is contained in:
Raynaldo Rivera
2014-10-03 14:23:53 -07:00
parent 0b635950a8
commit 74ad02b677
25 changed files with 682 additions and 0 deletions

0
portal/__init__.py Normal file
View File

3
portal/admin.py Normal file
View File

@@ -0,0 +1,3 @@
from django.contrib import admin
# Register your models here.

3
portal/models.py Normal file
View File

@@ -0,0 +1,3 @@
from django.db import models
# Create your models here.

3
portal/tests.py Normal file
View File

@@ -0,0 +1,3 @@
from django.test import TestCase
# Create your tests here.

8
portal/views.py Normal file
View File

@@ -0,0 +1,8 @@
from django.shortcuts import render
from django.shortcuts import render_to_response
from django.template import RequestContext
# Create your views here.
def index(request):
return render_to_response('public/index.html',None, context_instance=RequestContext(request))