Author
|
zPlus <zplus@peers.community>
2023-03-22 09:04:17
|
Committer
|
zPlus <zplus@peers.community>
2023-03-22 09:04:17
|
Commit
|
618e347
(patch)
|
Tree
|
991c03a
|
Parent(s)
|
|
Align mailing list participants vertically.
commits diff:
18d92d7..618e347
1 file changed,
6 insertions,
6 deletions
—
download
Diffstat
Diff options
+6/-6
M templates/mailing_list/emails_thread.html
11
|
11
|
|
<div class="subtitle">
|
12
|
12
|
|
#{{ thread.id }} - <span title="{{ thread.datetime }}">Created {{ thread.datetime|ago }}</span>
|
13
|
13
|
|
</div>
|
14
|
|
- |
|
|
14
|
+ |
|
15
|
15
|
|
<div class="content">
|
16
|
|
- |
|
|
16
|
+ |
|
17
|
17
|
|
<div class="messages">
|
18
|
18
|
|
{% for email in emails %}
|
19
|
19
|
|
<div class="message" id="{{ email.id }}">
|
40
|
40
|
|
</div>
|
41
|
41
|
|
{% endfor %}
|
42
|
42
|
|
</div>
|
43
|
|
- |
|
|
43
|
+ |
|
44
|
44
|
|
<div class="info">
|
45
|
45
|
|
{% for tag in tags %}
|
46
|
46
|
|
<div class="tag">
|
47
|
47
|
|
<b>{{ tag }}:</b> {{ tags[tag]|join(', ') }}
|
48
|
48
|
|
</div>
|
49
|
49
|
|
{% endfor %}
|
50
|
|
- |
|
|
50
|
+ |
|
51
|
51
|
|
<details open>
|
52
|
52
|
|
<summary>{{ participants|length }} participants</summary>
|
53
|
53
|
|
{% for address in participants %}
|
54
|
|
- |
{{ address[0] }} <{{ address[1] }}>
|
|
54
|
+ |
<div>{{ address[0] }} <{{ address[1] }}></div>
|
55
|
55
|
|
{% endfor %}
|
56
|
56
|
|
</details>
|
57
|
57
|
|
</div>
|
58
|
|
- |
|
|
58
|
+ |
|
59
|
59
|
|
</div>
|
60
|
60
|
|
</div>
|
61
|
61
|
|
|