Cleanup on the template that lists a zone's records

This commit is contained in:
Jeffrey Forman 2012-10-27 18:41:48 -04:00
parent 60c6a9ee83
commit a3e0dcc8cc
1 changed files with 4 additions and 3 deletions

View File

@ -7,7 +7,7 @@ Zone listing for {{ zone_name }}
{% block body %} {% block body %}
{% if not errors %} {% if not errors %}
<table class="table"> <table class="table table-hover">
<tr> <tr>
<th>Select</th> <th>Select</th>
<th>Name</th> <th>Name</th>
@ -44,7 +44,8 @@ Zone listing for {{ zone_name }}
</td> </td>
</tr> </tr>
{% endfor %} {% endfor %}
<td colspan="6" align="right"><a href="/add_record/{{ dns_server }}/{{ zone_name }}/">Add Record</a></td>
<td colspan="7"><a href="/add_record/{{ dns_server }}/{{ zone_name }}/">Add Record</a></td>
</table> </table>
<input type="submit" value="Delete Selected"/> <input type="submit" value="Delete Selected"/>
</form> </form>