Skip to main content

max / makenotwork

1.1 KB · 35 lines History Blame Raw
1 <div class="content-section">
2 <div class="section-header">
3 <h2 class="subsection-title">Forum Communities</h2>
4 </div>
5
6 <p class="form-hint mb-5">Your memberships across <a href="{{ mt_base_url }}">Multithreaded</a> forum communities.</p>
7
8 {% if memberships.is_empty() %}
9 <p class="muted">You haven't joined any forum communities yet.</p>
10 {% else %}
11 <div class="scroll-x">
12 <table class="data-table">
13 <thead>
14 <tr>
15 <th>Community</th>
16 <th class="col-role">Role</th>
17 <th>Posts</th>
18 <th>Joined</th>
19 </tr>
20 </thead>
21 <tbody>
22 {% for m in memberships %}
23 <tr>
24 <td><a href="{{ m.profile_url }}">{{ m.community_name }}</a></td>
25 <td class="col-role"><span class="badge badge-role-{{ m.role }}">{{ m.role }}</span></td>
26 <td>{{ m.post_count }}</td>
27 <td>{{ m.joined }}</td>
28 </tr>
29 {% endfor %}
30 </tbody>
31 </table>
32 </div>
33 {% endif %}
34 </div>
35