* Rename add.html template to add_influence.html for consistency.
authorMatthijs Kooijman <matthijs@stdin.nl>
Sun, 24 Feb 2008 15:10:13 +0000 (16:10 +0100)
committerMatthijs Kooijman <matthijs@stdin.nl>
Sun, 24 Feb 2008 15:10:13 +0000 (16:10 +0100)
influences/views.py
templates/influences/add.html [deleted file]
templates/influences/add_influence.html [new file with mode: 0644]

index e5391128abf1a37f57dbfa4925e257ced66c9aa9..fec38f31f225f76ab741dbf802ed70e15938c998 100644 (file)
@@ -50,7 +50,7 @@ def add_influence(request, character_id=None):
         # Redirect to the just saved influence
         return HttpResponseRedirect(reverse('influences_influence_detail', args=[influence.id]))
 
-    return render_to_response('influences/add.html', {'form' : f}, RequestContext(request))
+    return render_to_response('influences/add_influence.html', {'form' : f}, RequestContext(request))
 
 @login_required
 def add_character(request):
diff --git a/templates/influences/add.html b/templates/influences/add.html
deleted file mode 100644 (file)
index 1a3bb01..0000000
+++ /dev/null
@@ -1,28 +0,0 @@
-{% extends "base/base.html" %}
-{% load i18n %}
-
-{% block content %}
-
-<h1>{% trans "Submit influence" %}</h1>
-{% if form %}
-<p>
-{% blocktrans %}You can submit an influence here. Use this form if your character wants
-to achieve something between events, such as gathering information
-through a contact, arranging for an ally to do a dirty job, etc. Please
-add a clear description of <em>what</em> your character wants to achieve
-and <em>how</em> he or she plans to achieve it.{% endblocktrans %}
-</p>
-<p>
-{% blocktrans %}After you have submitted the influence, you will receive
-a summary by email. When the SLs change something about the influence,
-or add a resolution, you will again be notified by email.{% endblocktrans %}
-</p>
-<form method="POST">
-<table>
-{{ form.as_table }}
-</table>
-<input type="submit" value="{% trans "Submit" %}"/>
-</form>
-{% endif %}
-
-{% endblock %}
diff --git a/templates/influences/add_influence.html b/templates/influences/add_influence.html
new file mode 100644 (file)
index 0000000..1a3bb01
--- /dev/null
@@ -0,0 +1,28 @@
+{% extends "base/base.html" %}
+{% load i18n %}
+
+{% block content %}
+
+<h1>{% trans "Submit influence" %}</h1>
+{% if form %}
+<p>
+{% blocktrans %}You can submit an influence here. Use this form if your character wants
+to achieve something between events, such as gathering information
+through a contact, arranging for an ally to do a dirty job, etc. Please
+add a clear description of <em>what</em> your character wants to achieve
+and <em>how</em> he or she plans to achieve it.{% endblocktrans %}
+</p>
+<p>
+{% blocktrans %}After you have submitted the influence, you will receive
+a summary by email. When the SLs change something about the influence,
+or add a resolution, you will again be notified by email.{% endblocktrans %}
+</p>
+<form method="POST">
+<table>
+{{ form.as_table }}
+</table>
+<input type="submit" value="{% trans "Submit" %}"/>
+</form>
+{% endif %}
+
+{% endblock %}