From a181df791a7401e9f739d6bb5806cea8b1c19da6 Mon Sep 17 00:00:00 2001 From: Dusty Phillips Date: Sun, 12 Oct 2008 18:46:57 -0400 Subject: drop seeveral unnecessary templates --- templates/wiki/base.html | 30 ------------------------------ templates/wiki/edit.html | 22 ---------------------- templates/wiki/home.html | 9 --------- templates/wiki/page.html | 17 ----------------- 4 files changed, 78 deletions(-) delete mode 100644 templates/wiki/base.html delete mode 100644 templates/wiki/edit.html delete mode 100644 templates/wiki/home.html delete mode 100644 templates/wiki/page.html (limited to 'templates/wiki') diff --git a/templates/wiki/base.html b/templates/wiki/base.html deleted file mode 100644 index 90d93156..00000000 --- a/templates/wiki/base.html +++ /dev/null @@ -1,30 +0,0 @@ - - - -{% block title %}{% endblock %} - - -{% block content %} -

This is the base template. Extend it with the "extends" template tag.

-{% endblock %} - - \ No newline at end of file diff --git a/templates/wiki/edit.html b/templates/wiki/edit.html deleted file mode 100644 index 421a313f..00000000 --- a/templates/wiki/edit.html +++ /dev/null @@ -1,22 +0,0 @@ -{% extends "base.html" %} -{% block content %} -
-
- Wiki Syntax -
-

Editing: {{ page.title }}

-
- -

- -

- -
- -
-{% endblock %} diff --git a/templates/wiki/home.html b/templates/wiki/home.html deleted file mode 100644 index 6c0fb6ef..00000000 --- a/templates/wiki/home.html +++ /dev/null @@ -1,9 +0,0 @@ -{% extends "base.html" %} -{% block content %} -
-

Wiki Index

-{% for page in pages %} -

{{ page.title }}

-{% endfor %} -
-{% endblock %} diff --git a/templates/wiki/page.html b/templates/wiki/page.html deleted file mode 100644 index e0e6ddd9..00000000 --- a/templates/wiki/page.html +++ /dev/null @@ -1,17 +0,0 @@ -{% extends "base.html" %} -{% load wikitags %} -{% block content %} -
-

{{ page.title }}

-
-{{ page.content|wikify }} -
- - -
- Last Author: {{ page.last_author.username }} -
-
-{% endblock %} -- cgit v1.2.3-2-g168b