Commit 448d18f8f9
introduced some problems, which
are fixed in this commit: * Cancel links were converted to buttons, by simply wrapping them into a <button>-element, causing them to act as submit buttons, as submit is the default action for buttons, instead of cancel buttons. Instead the proper bootstrap code for showing links as buttons is used now. * add_cname_record_form.htm hasn't been adjusted to show a button instead of a link for cancelling. I converted that to a button now as well.
This commit is contained in:
parent
7073cbbf8d
commit
270bb80921
|
@ -63,6 +63,6 @@
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<button type="submit" class="btn">Save Changes</button>
|
<button type="submit" class="btn">Save Changes</button>
|
||||||
<a href="{% url "zone_list" dns_server=dns_server zone_name=zone_name %}">Cancel</a>
|
<a href="{% url "zone_list" dns_server=dns_server zone_name=zone_name %}" class="btn btn-warning">Cancel</a>
|
||||||
</form>
|
</form>
|
||||||
{% endblock body %}
|
{% endblock body %}
|
||||||
|
|
|
@ -95,6 +95,6 @@
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<button type="submit" class="btn">Save Changes</button>
|
<button type="submit" class="btn">Save Changes</button>
|
||||||
<button class="btn btn-warning"><a href="{% url "zone_list" dns_server=dns_server zone_name=zone_name %}">Cancel</a></buton>
|
<a href="{% url "zone_list" dns_server=dns_server zone_name=zone_name %}" class="btn btn-warning">Cancel</a>
|
||||||
</form>
|
</form>
|
||||||
{% endblock body %}
|
{% endblock body %}
|
||||||
|
|
|
@ -39,7 +39,7 @@
|
||||||
<tr>
|
<tr>
|
||||||
<td colspan="2">
|
<td colspan="2">
|
||||||
<button type="submit" class="btn">Yes, I really want to delete them.</button>
|
<button type="submit" class="btn">Yes, I really want to delete them.</button>
|
||||||
<button class="btn btn-warning"><a href="{% url "zone_list" dns_server=dns_server zone_name=zone_name %}">Cancel</a></button>
|
<a href="{% url "zone_list" dns_server=dns_server zone_name=zone_name %}" class="btn btn-warning">Cancel</a>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
</form>
|
</form>
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
{% if not errors %}
|
{% if not errors %}
|
||||||
<form action="{% url "delete_record" %}" method="post">{% csrf_token %}
|
<form action="{% url "delete_record" %}" method="post">{% csrf_token %}
|
||||||
<table class="table table-hover sortable">
|
<table class="table table-hover sortable">
|
||||||
<button class="btn btn-default"><a href="{% url "add_record" dns_server=dns_server zone_name=zone_name %}">Add Record</a></button>
|
<a href="{% url "add_record" dns_server=dns_server zone_name=zone_name %}" class="btn btn-default">Add Record</a></button>
|
||||||
|
|
||||||
<tr>
|
<tr>
|
||||||
<th>Select</th>
|
<th>Select</th>
|
||||||
|
|
Loading…
Reference in New Issue