horizon/openstack_dashboard/dashboards/identity/groups/templates/groups/_add_non_member.html
Diana Whitten 2e793aa2dd Branding: Workflow cancel btn should be themable
Cancel buttons are quite hard coded in their styles, and most templates
are overriding the default modal-footer template.

This patch removes most of the straight duplications in the
modal-footer.

Co-Authored-By: Rob Cresswell <robert.cresswell@outlook.com>
Closes-bug: #1551455
Change-Id: I496381e3f512856ad37619108b45af3c1da800a5
2016-03-14 12:48:11 -07:00

9 lines
319 B
HTML

{% extends "horizon/common/_modal_form_add_members.html" %}
{% load i18n %}
{% block modal-header %}{% trans "Add Group Assignment" %}{% endblock %}
{% block modal-footer %}
<a href="{% url 'horizon:identity:groups:manage_members' group.id %}" class="btn btn-default cancel">{% trans "Cancel" %}</a>
{% endblock %}