Skip to content

Commit

Permalink
Domain list template.
Browse files Browse the repository at this point in the history
  • Loading branch information
root committed Jul 31, 2011
1 parent e7d3f5d commit a90aea6
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions pymandns/control/templates/domain_list.html
Original file line number Original file line Diff line number Diff line change
@@ -0,0 +1,19 @@
{% extends 'base.html' %}
{% block content %}

<h1>Domains list</h1>

<table>
<tr>
<th>Domain</th>
<th>Actions</th>
</tr>
{% for domain in domains %}
<tr>
<td>{{ domain.domain }}</td>
<td>--</td>
</tr>
{% endfor %}
</table>

{% endblock %}

0 comments on commit a90aea6

Please sign in to comment.