瀏覽代碼

This finishes up chapter 9

Steve Thielemann 7 年之前
父節點
當前提交
5e86cfebc4

二進制
django_site/db.sqlite3


+ 6 - 1
django_site/django_site/settings.py

@@ -24,9 +24,14 @@ SECRET_KEY = 'x$d3uu_w97u1v&&(@w_xl0ds(g$@yf7qmz8tqv_xoev_)tbtna'
 
 # SECURITY WARNING: don't run with debug turned on in production!
 DEBUG = True
-
 ALLOWED_HOSTS = []
 
+## If you want to use this (DEBUG=False), and have static content sent, use:
+## ./manage.py runserver --insecure
+
+# DEBUG = False
+# ALLOWED_HOSTS = ['localhost', '127.0.0.1']
+
 
 # Application definition
 

+ 11 - 0
django_site/django_site/templates/404.html

@@ -0,0 +1,11 @@
+{% extends "base.html" %}
+{% block title %}Page Not Found{% endblock title %}
+{% block sidenav %}
+<li><a href="/">Home</a></li>
+{% endblock sidenav %}
+{% block content %}
+<h1>Aw Snap!</h1>
+<p>Not sure where you were going, want to try again?
+</p>
+<p>Thanks</p>
+{% endblock content %}

+ 10 - 2
django_site/django_site/templates/base.html

@@ -3,7 +3,11 @@
 <html>
   <head>
     <meta charset="utf-8">
-    <title>Untitled Document</title>
+    <title>
+      {% block title %}
+      Untitled Document
+      {% endblock title %}
+    </title>
     <link href="{% static 'main.css' %}" rel="stylesheet" type="text/css">
   </head>
   <body>
@@ -14,7 +18,11 @@
       </header>
       <aside id="leftsidebar">
 	<nav id="nav">
-	  <ul><li>Menu 1</li><li>Menu 2</li><li>Menu 3</li></ul>
+	  <ul>
+	    {% block sidenav %}
+	    <li>Menu 1</li><li>Menu 2</li><li>Menu 3</li>
+	    {% endblock sidenav %}
+	  </ul>
 	</nav>
       </aside>
       <section id="main">

+ 18 - 2
django_site/pages/templates/pages/page.html

@@ -1,6 +1,22 @@
 {% extends "base.html" %}
 
+{% block title %}{{ title }}{% endblock title %}
+
+{% block sidenav %}
+{% for page in page_list %}
+<li>
+  <a href="{{ page.permalink }}">{{ page.title }}</a>
+</li>
+{% endfor %}
+{% endblock sidenav %}
+
 {% block content %}
-<h1>Welcome!</h1>
-<p>This is the page template</p>
+{% autoescape off %}
+{{ content }}
+{% endautoescape %}
+
+<p>
+  Page last updated: {{ last_updated|date:'D d F Y' }}
+</p>
+
 {% endblock content %}

+ 2 - 1
django_site/pages/urls.py

@@ -2,5 +2,6 @@ from django.conf.urls import url
 from . import views
 
 urlpatterns = [
-    url(r'^$', views.index, name='index'),
+    # url(r'^$', views.index, name='index'),
+    url(r'([^/]*)', views.index, name='index'),
 ]

+ 17 - 3
django_site/pages/views.py

@@ -1,9 +1,23 @@
-from django.shortcuts import render
+# from django.shortcuts import render
+from django.shortcuts import render, get_object_or_404
 # from django.http import HttpResponse
 
+from . models import Page
+
 # Create your views here.
 
-def index(request):
+def index(request, pagename):
     # return HttpResponse("<h1>The Homepage</h1>")
-    return render(request, 'pages/page.html') # "base.html" )
+    # return render(request, 'pages/page.html') # "base.html" )
+    pagename = '/' + pagename
+    # pg = Page.objects.get(permalink=pagename)
+    pg = get_object_or_404(Page, permalink=pagename)
+    context = {
+        'title': pg.title,
+        'content': pg.bodytext,
+        'last_updated': pg.update_date,
+        'page_list': Page.objects.all(),
+        }
+    # assert False   # django debug page is cool!
+    return render(request, 'pages/page.html', context)