add all apps, still blank

This commit is contained in:
erichhasl
2017-11-18 14:47:44 +01:00
parent 72135d654f
commit c5c35759e0
18 changed files with 71 additions and 4 deletions
+3
View File
@@ -0,0 +1,3 @@
from django.contrib import admin
# Register your models here.
+3
View File
@@ -0,0 +1,3 @@
from django.db import models
# Create your models here.
@@ -0,0 +1,5 @@
{% extends "public/default.html" %}
{% block content %}
<p>Mein Goethopia!</p>
{% endblock %}
+3
View File
@@ -0,0 +1,3 @@
from django.test import TestCase
# Create your tests here.
+7
View File
@@ -0,0 +1,7 @@
from django.conf.urls import url
from . import views
urlpatterns = [
url(r'^$', views.index, name='index')
]
+6
View File
@@ -0,0 +1,6 @@
from django.shortcuts import render
# Create your views here.
def index(request):
return render(request, "meingoethopia/index.html")