Commit cb30ee65 authored by Michal Čihař's avatar Michal Čihař

Show ID of associated accounts

parent fca9b34e
...@@ -54,6 +54,7 @@ ...@@ -54,6 +54,7 @@
<thead> <thead>
<tr> <tr>
<th>{% trans "Service" %}</th> <th>{% trans "Service" %}</th>
<th>{% trans "User ID" %}</th>
<th>{% trans "Action" %}</th> <th>{% trans "Action" %}</th>
</td> </td>
</tr> </tr>
...@@ -61,6 +62,7 @@ ...@@ -61,6 +62,7 @@
{% for assoc in backends.associated %} {% for assoc in backends.associated %}
<tr> <tr>
<th>{{ assoc.provider }}</th> <th>{{ assoc.provider }}</th>
<td>{{ assoc.uid }}</th>
<td><a href="{% url 'social:disconnect_individual' assoc.provider assoc.id %}" class="disconnect button">Disconnect</a></td> <td><a href="{% url 'social:disconnect_individual' assoc.provider assoc.id %}" class="disconnect button">Disconnect</a></td>
</tr> </tr>
{% endfor %} {% endfor %}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment