summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--hyperkitty/static/hyperkitty/css/hyperkitty-user.css3
-rw-r--r--hyperkitty/templates/fragments/user_subscriptions.html11
2 files changed, 10 insertions, 4 deletions
diff --git a/hyperkitty/static/hyperkitty/css/hyperkitty-user.css b/hyperkitty/static/hyperkitty/css/hyperkitty-user.css
index 1f04c70..821e6cb 100644
--- a/hyperkitty/static/hyperkitty/css/hyperkitty-user.css
+++ b/hyperkitty/static/hyperkitty/css/hyperkitty-user.css
@@ -84,6 +84,9 @@ table.user-data label,
table.user-data input {
margin-bottom: 0;
}
+table.user-data td {
+ color: #555555;
+}
.user-profile .ajaxloader {
diff --git a/hyperkitty/templates/fragments/user_subscriptions.html b/hyperkitty/templates/fragments/user_subscriptions.html
index ef661c2..a51cf44 100644
--- a/hyperkitty/templates/fragments/user_subscriptions.html
+++ b/hyperkitty/templates/fragments/user_subscriptions.html
@@ -6,7 +6,7 @@
<thead>
<tr>
<th>List</th>
- <th>Time of first activity</th>
+ <th>Time since the first activity</th>
<th>First post</th>
<th>Posts to this list</th>
<th>Votes</th>
@@ -20,10 +20,13 @@
</td>
{% if sub.first_post %}
<td>
- {{ sub.first_post|get_date|date:"l, j F Y H:i:s" }}
- {{ sub.first_post|get_date|timesince }}
+ <abbr title="{{ sub.first_post|get_date|date:"l, j F Y H:i:s"|escape }}">
+ {{ sub.first_post|get_date|timesince }}</abbr>
+ </td>
+ <td>
+ <a href="{% url 'message_index' mlist_fqdn=sub.list_name message_id_hash=sub.first_post.message_id_hash %}"
+ >{{ sub.first_post.subject }}</a>
</td>
- <td>{{ sub.first_post.subject }}</td>
<td><a href="{{ sub.all_posts_url }}">{{ sub.posts_count }} post{{ sub.posts_count|pluralize }}</a></td>
<td><span class="likestatus {{ sub.likestatus }}">+{{ sub.likes }}/-{{ sub.dislikes }}</span></td>
{% else %}