2
0
mirror of https://github.com/jfmcbrayer/brutaldon synced 2024-12-22 13:26:14 +01:00
brutaldon-interfaccia-web-m.../brutaldon/templates/intercooler/block.html
2018-09-02 19:52:48 -04:00

16 lines
523 B
HTML

{% if not relationship.blocking %}
<a class="level-item fa fa-ban" title="block"
href="{% url 'block' user.id %}"
ic-post-to="{% url 'block' user.id %}"
ic-indicator="#user-spinner" ic-replace-target="true">
<span class="is-hidden">Block</span>
</a>
{% else %}
<a class="level-item fa fa-circle-o" title="unblock"
href="{% url 'block' user.id %}"
ic-post-to="{% url 'block' user.id %}"
ic-indicator="#user-spinner" ic-replace-target="true">
<span class="is-hidden">Unblock</span>
</a>
{% endif %}