From: Matthijs Kooijman Date: Thu, 24 Jan 2008 11:51:03 +0000 (+0100) Subject: * Put the extends tag in the first line of all templates, instead of after the load... X-Git-Url: https://git.stderr.nl/gitweb?a=commitdiff_plain;h=c508d4372faf6e365f4e2b36a91d382b069d3d8c;p=matthijs%2Fprojects%2Fxerxes.git * Put the extends tag in the first line of all templates, instead of after the load i18n tag. --- diff --git a/templates/influences/add.html b/templates/influences/add.html index 3c6c866..695b89c 100644 --- a/templates/influences/add.html +++ b/templates/influences/add.html @@ -1,5 +1,5 @@ -{% load i18n %} {% extends "base/base.html" %} +{% load i18n %} {% block content %} diff --git a/templates/influences/add_character.html b/templates/influences/add_character.html index 1b229c2..2cda983 100644 --- a/templates/influences/add_character.html +++ b/templates/influences/add_character.html @@ -1,5 +1,5 @@ -{% load i18n %} {% extends "base/base.html" %} +{% load i18n %} {% block content %}

{% trans "Add a character" %}

diff --git a/templates/influences/character_detail.html b/templates/influences/character_detail.html index f5071c2..3127985 100644 --- a/templates/influences/character_detail.html +++ b/templates/influences/character_detail.html @@ -1,5 +1,5 @@ -{% load i18n %} {% extends "base/base.html" %} +{% load i18n %} {% block content %} diff --git a/templates/influences/character_list.html b/templates/influences/character_list.html index 0ca1f29..df39a8a 100644 --- a/templates/influences/character_list.html +++ b/templates/influences/character_list.html @@ -1,5 +1,5 @@ -{% load i18n %} {% extends "base/base.html" %} +{% load i18n %} {% block content %} diff --git a/templates/influences/index.html b/templates/influences/index.html index 2cfb5a1..5a6de5e 100644 --- a/templates/influences/index.html +++ b/templates/influences/index.html @@ -1,5 +1,5 @@ -{% load i18n %} {% extends "base/base.html" %} +{% load i18n %} {% block content %} @@ -30,5 +30,4 @@ {% endif %}

{% trans "Submit influence" %}

- {% endblock %}