From 2cdf658bf8fcb72d1dce6ca6d55ca0e553402fed Mon Sep 17 00:00:00 2001 From: Nick Timkovich Date: Tue, 24 Oct 2017 15:00:24 -0500 Subject: [PATCH] Fix formatting of cancel button on update forms "Cancel" appears large and grey, styled like the X to close the form. It also needs to appear before the "Update" element in the source, otherwise there is no spacing between the two buttons. Change-Id: Idd03e1a178523b07d644b54e5e48a40b5f3f8c60 --- blazar_dashboard/content/hosts/templates/hosts/_update.html | 2 +- blazar_dashboard/content/leases/templates/leases/_update.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/blazar_dashboard/content/hosts/templates/hosts/_update.html b/blazar_dashboard/content/hosts/templates/hosts/_update.html index 7631bf5..87ae102 100644 --- a/blazar_dashboard/content/hosts/templates/hosts/_update.html +++ b/blazar_dashboard/content/hosts/templates/hosts/_update.html @@ -19,6 +19,6 @@ {% endblock %} {% block modal-footer %} + {% trans "Cancel" %} - {% trans "Cancel" %} {% endblock %} diff --git a/blazar_dashboard/content/leases/templates/leases/_update.html b/blazar_dashboard/content/leases/templates/leases/_update.html index e5bbcac..9875bdc 100644 --- a/blazar_dashboard/content/leases/templates/leases/_update.html +++ b/blazar_dashboard/content/leases/templates/leases/_update.html @@ -19,6 +19,6 @@ {% endblock %} {% block modal-footer %} + {% trans "Cancel" %} - {% trans "Cancel" %} {% endblock %}