From 5209847ab5a4ad4d4308f6871c7981703fa89a0b Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Mon, 21 Feb 2011 19:30:43 -0400 Subject: [PATCH] Added a simple generic template to display text on screen --- apps/common/templates/generic_template.html | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 apps/common/templates/generic_template.html diff --git a/apps/common/templates/generic_template.html b/apps/common/templates/generic_template.html new file mode 100644 index 0000000000..469cf759db --- /dev/null +++ b/apps/common/templates/generic_template.html @@ -0,0 +1,11 @@ +{% extends "base.html" %} +{% block title %}{{ title }}{% endblock %} + +{% block content %} +
+

{{ title }}

+
+

{{ content }}

+
+
+{% endblock %}