From 6a5ffc2be512e507fac65ac9b4c5fa87b68a6c69 Mon Sep 17 00:00:00 2001 From: Aurélien Bompard Date: Tue, 5 Feb 2013 04:46:04 +0100 Subject: Normalize some variable names --- hyperkitty/templates/messages/like_form.html | 2 +- hyperkitty/templates/messages/message.html | 10 +++++----- hyperkitty/templates/messages/reply_form.html | 2 +- hyperkitty/templates/month_view.html | 2 +- hyperkitty/templates/search.html | 2 +- hyperkitty/templates/user_profile.html | 8 ++++---- 6 files changed, 13 insertions(+), 13 deletions(-) (limited to 'hyperkitty/templates') diff --git a/hyperkitty/templates/messages/like_form.html b/hyperkitty/templates/messages/like_form.html index 3b99987..40b85c0 100644 --- a/hyperkitty/templates/messages/like_form.html +++ b/hyperkitty/templates/messages/like_form.html @@ -1,5 +1,5 @@
+ action="{% url message_vote mlist_fqdn=list_address, message_id_hash=message_id_hash %}"> {% csrf_token %}
  • +{{ object.likes }}/-{{ object.dislikes }} diff --git a/hyperkitty/templates/messages/message.html b/hyperkitty/templates/messages/message.html index a47d831..89ecda7 100644 --- a/hyperkitty/templates/messages/message.html +++ b/hyperkitty/templates/messages/message.html @@ -19,7 +19,7 @@ {% gravatar email.sender_email 40 %}
  • diff --git a/hyperkitty/templates/user_profile.html b/hyperkitty/templates/user_profile.html index c967be6..8052bce 100644 --- a/hyperkitty/templates/user_profile.html +++ b/hyperkitty/templates/user_profile.html @@ -65,11 +65,11 @@ {% for vote in votes_up %}
  • {% if vote.message.content|trimString|length > 0 %} - {{ vote.message.subject }} by {{ vote.message.sender_name }} ({{ vote.message|viewer_date|date:"l, j F Y H:i:s" }}) {% else %} - Message is empty + Message is empty {% endif %}
  • {% endfor %} @@ -84,11 +84,11 @@ {% for vote in votes_down %}
  • {% if vote.message.content|trimString|length > 0 %} - {{ vote.message.subject }} by {{ vote.message.sender_name }} ({{ vote.message|viewer_date|date:"l, j F Y H:i:s" }}) {% else %} - Message is empty + Message is empty {% endif %}
  • {% endfor %} -- cgit