diff options
| author | Aurélien Bompard <aurelien@bompard.org> | 2013-02-05 04:46:04 +0100 |
|---|---|---|
| committer | Aurélien Bompard <aurelien@bompard.org> | 2013-02-05 04:46:04 +0100 |
| commit | 6a5ffc2be512e507fac65ac9b4c5fa87b68a6c69 (patch) | |
| tree | f1212c6a47f23d02a497ffabc02913f9b25900ac /hyperkitty/templates/user_profile.html | |
| parent | 0a8afb682c861c81073bd99d2e8878992137ce56 (diff) | |
| download | hyperkitty-6a5ffc2be512e507fac65ac9b4c5fa87b68a6c69.tar.gz hyperkitty-6a5ffc2be512e507fac65ac9b4c5fa87b68a6c69.tar.xz hyperkitty-6a5ffc2be512e507fac65ac9b4c5fa87b68a6c69.zip | |
Normalize some variable names
Diffstat (limited to 'hyperkitty/templates/user_profile.html')
| -rw-r--r-- | hyperkitty/templates/user_profile.html | 8 |
1 files changed, 4 insertions, 4 deletions
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 %} <li> {% if vote.message.content|trimString|length > 0 %} - <a href="{% url message_index mlist_fqdn=vote.list_address, hashid=vote.messageid %}" + <a href="{% url message_index mlist_fqdn=vote.list_address, message_id_hash=vote.messageid %}" >{{ vote.message.subject }}</a> by {{ vote.message.sender_name }} ({{ vote.message|viewer_date|date:"l, j F Y H:i:s" }}) {% else %} - <a href="{% url message_index mlist_fqdn=vote.list_address, hashid=vote.messageid %}">Message is empty</a> + <a href="{% url message_index mlist_fqdn=vote.list_address, message_id_hash=vote.messageid %}">Message is empty</a> {% endif %} </li> {% endfor %} @@ -84,11 +84,11 @@ {% for vote in votes_down %} <li> {% if vote.message.content|trimString|length > 0 %} - <a href="{% url message_index mlist_fqdn=vote.list_address, hashid=vote.messageid %}" + <a href="{% url message_index mlist_fqdn=vote.list_address, message_id_hash=vote.messageid %}" >{{ vote.message.subject }}</a> by {{ vote.message.sender_name }} ({{ vote.message|viewer_date|date:"l, j F Y H:i:s" }}) {% else %} - <a href="{% url message_index mlist_fqdn=vote.list_address, hashid=vote.messageid %}">Message is empty</a> + <a href="{% url message_index mlist_fqdn=vote.list_address, message_id_hash=vote.messageid %}">Message is empty</a> {% endif %} </li> {% endfor %} |
