From 9c1919af112d2203209ece9b78fd137144cec98c Mon Sep 17 00:00:00 2001 From: Aamir Khan Date: Wed, 20 Jun 2012 02:51:34 -0400 Subject: renaming simple_form.html to add_tag_form.html --- templates/add_tag_form.html | 14 ++++++++++++++ templates/simple_form.html | 16 ---------------- 2 files changed, 14 insertions(+), 16 deletions(-) create mode 100644 templates/add_tag_form.html delete mode 100644 templates/simple_form.html diff --git a/templates/add_tag_form.html b/templates/add_tag_form.html new file mode 100644 index 0000000..9a0f68c --- /dev/null +++ b/templates/add_tag_form.html @@ -0,0 +1,14 @@ +{% extends "base.html" %} + +{% block title %}{{ app_name }}{% endblock %} + +{% block header %} {% endblock %} +{% block content %} +
+
+ {% csrf_token %} + {{ addtag_form }} + +
+
+{% endblock %} diff --git a/templates/simple_form.html b/templates/simple_form.html deleted file mode 100644 index 70253ea..0000000 --- a/templates/simple_form.html +++ /dev/null @@ -1,16 +0,0 @@ -{% extends "base_simple.html" %} -{% load gravatar %} - -{% block title %}{{ app_name }}{% endblock %} - - -{% block content %} - -
-
- {% csrf_token %} - {{ addtag_form }} - -
-
-{% endblock %} -- cgit