summaryrefslogtreecommitdiffstats
path: root/hyperkitty/templates/user_profile.html
diff options
context:
space:
mode:
Diffstat (limited to 'hyperkitty/templates/user_profile.html')
-rw-r--r--hyperkitty/templates/user_profile.html8
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 %}