|
@@ -41,28 +41,28 @@
|
|
|
</td>
|
|
|
<td class="lead text-muted">
|
|
|
{% if item.is_tab %}
|
|
|
- <div class="fa fa-list tooltip-top" title="{% trans "Has page on users list." %}"></div>
|
|
|
+ <div class="fa fa-list" data-tooltip="top" title="{% trans 'Has page on users list.' %}"></div>
|
|
|
{% endif %}
|
|
|
{% if item.is_default %}
|
|
|
- <div class="fa fa-star tooltip-top" title="{% trans "This is default rank assigned to new members." %}"></div>
|
|
|
+ <div class="fa fa-star" data-tooltip="top" title="{% trans 'This is default rank assigned to new members.' %}"></div>
|
|
|
{% endif %}
|
|
|
</td>
|
|
|
{% for action in extra_actions %}
|
|
|
<td class="row-action">
|
|
|
- <a href="{% url action.link pk=item.pk %}" class="btn btn-{% if action.style %}{{ action.style }}{% else %}default{% endif %} tooltip-top" title="{{ action.name }}">
|
|
|
+ <a href="{% url action.link pk=item.pk %}" class="btn btn-{% if action.style %}{{ action.style }}{% else %}default{% endif %}" data-tooltip="top" title="{{ action.name }}">
|
|
|
<span class="{{ action.icon }}"></span>
|
|
|
</a>
|
|
|
</td>
|
|
|
{% endfor %}
|
|
|
<td class="row-action">
|
|
|
- <a href="{% url 'misago:admin:users:ranks:users' pk=item.pk %}" class="btn btn-primary tooltip-top" title="{% trans "Users with rank" %}">
|
|
|
+ <a href="{% url 'misago:admin:users:ranks:users' pk=item.pk %}" class="btn btn-primary" data-tooltip="top" title="{% trans 'Users with rank' %}">
|
|
|
<span class="fa fa-users"></span>
|
|
|
</a>
|
|
|
</td>
|
|
|
<td class="row-action">
|
|
|
{% if not item.is_default %}
|
|
|
<form action="{% url 'misago:admin:users:ranks:default' pk=item.pk %}" method="post">
|
|
|
- <button class="btn btn-warning tooltip-top" title="{% trans "Make default" %}">
|
|
|
+ <button class="btn btn-warning" data-tooltip="top" title="{% trans 'Make default' %}">
|
|
|
{% csrf_token %}
|
|
|
<span class="fa fa-star"></span>
|
|
|
</button>
|
|
@@ -74,7 +74,7 @@
|
|
|
<td class="row-action">
|
|
|
{% if not forloop.last %}
|
|
|
<form action="{% url 'misago:admin:users:ranks:down' pk=item.pk %}" method="post">
|
|
|
- <button class="btn btn-default tooltip-top" title="{% trans "Move down" %}">
|
|
|
+ <button class="btn btn-default" data-tooltip="top" title="{% trans 'Move down' %}">
|
|
|
{% csrf_token %}
|
|
|
<span class="fa fa-chevron-down"></span>
|
|
|
</button>
|
|
@@ -86,7 +86,7 @@
|
|
|
<td class="row-action">
|
|
|
{% if not forloop.first %}
|
|
|
<form action="{% url 'misago:admin:users:ranks:up' pk=item.pk %}" method="post">
|
|
|
- <button class="btn btn-default tooltip-top" title="{% trans "Move up" %}">
|
|
|
+ <button class="btn btn-default" data-tooltip="top" title="{% trans 'Move up' %}">
|
|
|
{% csrf_token %}
|
|
|
<span class="fa fa-chevron-up"></span>
|
|
|
</button>
|
|
@@ -96,13 +96,13 @@
|
|
|
{% endif %}
|
|
|
</td>
|
|
|
<td class="row-action">
|
|
|
- <a href="{% url 'misago:admin:users:ranks:edit' pk=item.pk %}" class="btn btn-primary tooltip-top" title="{% trans "Edit" %}">
|
|
|
+ <a href="{% url 'misago:admin:users:ranks:edit' pk=item.pk %}" class="btn btn-primary" data-tooltip="top" title="{% trans 'Edit' %}">
|
|
|
<span class="fa fa-pencil"></span>
|
|
|
</a>
|
|
|
</td>
|
|
|
<td class="row-action">
|
|
|
<form action="{% url 'misago:admin:users:ranks:delete' pk=item.pk %}" method="post" class="delete-prompt">
|
|
|
- <button class="btn btn-danger tooltip-top" title="{% trans "Delete" %}">
|
|
|
+ <button class="btn btn-danger" data-tooltip="top" title="{% trans 'Delete' %}">
|
|
|
{% csrf_token %}
|
|
|
<span class="fa fa-times"></span>
|
|
|
</button>
|