From 4d759e6c57c70d26ccf2eff06cdb91496225abc2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Markus=20Zapke-Gru=CC=88ndemann?= Date: Fri, 30 Dec 2011 01:56:05 +0100 Subject: Added flatpages and more logos. --- sublab_project/settings.py | 2 ++ sublab_project/static/img/logo_large.png | Bin 0 -> 84331 bytes sublab_project/static/img/logo_medium.png | Bin 0 -> 25164 bytes sublab_project/templates/flatpages/default.html | 5 +++++ 4 files changed, 7 insertions(+) create mode 100644 sublab_project/static/img/logo_large.png create mode 100644 sublab_project/static/img/logo_medium.png create mode 100644 sublab_project/templates/flatpages/default.html (limited to 'sublab_project') diff --git a/sublab_project/settings.py b/sublab_project/settings.py index d5f7cad..a3d63e7 100644 --- a/sublab_project/settings.py +++ b/sublab_project/settings.py @@ -101,6 +101,7 @@ MIDDLEWARE_CLASSES = ( 'django.middleware.csrf.CsrfViewMiddleware', 'django.contrib.auth.middleware.AuthenticationMiddleware', 'django.contrib.messages.middleware.MessageMiddleware', + 'django.contrib.flatpages.middleware.FlatpageFallbackMiddleware', ) ROOT_URLCONF = 'sublab_project.urls' @@ -123,6 +124,7 @@ INSTALLED_APPS = ( 'django.contrib.admin', # Uncomment the next line to enable admin documentation: # 'django.contrib.admindocs', + 'django.contrib.flatpages', 'south', 'gunicorn', 'news', diff --git a/sublab_project/static/img/logo_large.png b/sublab_project/static/img/logo_large.png new file mode 100644 index 0000000..150f66f Binary files /dev/null and b/sublab_project/static/img/logo_large.png differ diff --git a/sublab_project/static/img/logo_medium.png b/sublab_project/static/img/logo_medium.png new file mode 100644 index 0000000..18afec6 Binary files /dev/null and b/sublab_project/static/img/logo_medium.png differ diff --git a/sublab_project/templates/flatpages/default.html b/sublab_project/templates/flatpages/default.html new file mode 100644 index 0000000..1632bc6 --- /dev/null +++ b/sublab_project/templates/flatpages/default.html @@ -0,0 +1,5 @@ +{% extends "base.html" %} + +{% block title %}{{ flatpage.title }}{% endblock%} + +{% block content %}{{ flatpage.content }}{% endblock%} -- cgit v1.2.1