mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2026-02-10 17:16:22 +01:00
Added initial commit
This commit is contained in:
0
portal/__init__.py
Normal file
0
portal/__init__.py
Normal file
3
portal/admin.py
Normal file
3
portal/admin.py
Normal file
@@ -0,0 +1,3 @@
|
||||
from django.contrib import admin
|
||||
|
||||
# Register your models here.
|
||||
3
portal/models.py
Normal file
3
portal/models.py
Normal file
@@ -0,0 +1,3 @@
|
||||
from django.db import models
|
||||
|
||||
# Create your models here.
|
||||
3
portal/tests.py
Normal file
3
portal/tests.py
Normal file
@@ -0,0 +1,3 @@
|
||||
from django.test import TestCase
|
||||
|
||||
# Create your tests here.
|
||||
8
portal/views.py
Normal file
8
portal/views.py
Normal 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))
|
||||
|
||||
Reference in New Issue
Block a user