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

Nicer buttons for ownership management

Signed-off-by: default avatarMichal Čihař <michal@cihar.com>
parent e24a99aa
......@@ -184,7 +184,7 @@
{% csrf_token %}
<input type="hidden" name="name" value="{{ user.username }}" />
<button type="submit" class="btn btn-warning btn-xs">
<i class="fa fa-trash"></i>
<i class="fa fa-user-times"></i>
{% trans "Revoke ownership" %}
</button>
</form>
......@@ -210,8 +210,8 @@
<form action="{% url "make-owner" project=object.slug %}" method="post">
{% csrf_token %}
<input type="hidden" name="name" value="{{ user.username }}" />
<button type="submit" class="btn btn-warning btn-xs">
<i class="fa fa-trash"></i>
<button type="submit" class="btn btn-success btn-xs">
<i class="fa fa-user-plus"></i>
{% trans "Make owner" %}
</button>
</form>
......
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