-
Notifications
You must be signed in to change notification settings - Fork 58
Expand file tree
/
Copy pathclient_row.html
More file actions
15 lines (15 loc) · 975 Bytes
/
client_row.html
File metadata and controls
15 lines (15 loc) · 975 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<tr>
<td><a href="#{{ client.name }}" alt="{{ client.name }}">{{ client.name }}</a></td>
<td>
{% if client.tracking_issue %}<a href="{{ client.tracking_issue }}">{% endif %}
{% if client.status == 100 %}<span title="OMEMO is supported">🎉{% if client.implementation_version %} Since <b>{{ client.implementation_version }}</b>{% endif %}</span>
{% elsif client.declined %}<span title="Client will not support OMEMO">😭</span>
{% elsif client.tracking_issue %}<span title="Developer(s) are working to support OMEMO">🔧</span>
{% elsif client.status_inactive %}<span title="Developer(s) are not currently working on OMEMO support">⏸️</span>
{% else %}❓{% endif %}
{% if client.tracking_issue %}</a>{% endif %}
</td>
<td data-sort="{{ client.status | plus: 0 }}" class="progress">
<progress max="100" value="{{ client.status | plus: 0 }}"></progress>
</td>
</tr>