Added buttons to cancel forms and fixed the styling of some buttons.

This commit is contained in:
Daniel Roschka 2015-03-22 18:34:40 +01:00
parent f0f897fad6
commit 1671bc4c2f
3 changed files with 4 additions and 2 deletions

View File

@ -97,6 +97,7 @@ Add record in {{ zone_name }}
</div>
<button type="submit" class="btn">Save Changes</button>
<a href="{% url "zone_list" dns_server=dns_server zone_name=zone_name %}">Cancel</a>
</form>
{% endblock body %}

View File

@ -40,7 +40,8 @@ Delete record(s) in {{ zone_name }}
</tr>
<tr>
<td colspan="2">
<input type="submit" value="Yes, I really want to delete them."/>
<button type="submit" class="btn">Yes, I really want to delete them.</button>
<a href="{% url "zone_list" dns_server=dns_server zone_name=zone_name %}">Cancel</a>
</td>
</tr>
</form>

View File

@ -48,7 +48,7 @@ Zone listing for {{ zone_name }} on {{ dns_server }}
</table>
<a href="{% url "add_record" dns_server=dns_server zone_name=zone_name %}">Add Record</a>
<input type="submit" value="Delete Selected"/>
<button type="submit" class="btn">Delete Selected</button>
</form>
{% endif %}
{% endblock body %}