Newer
Older
postorius / src / postorius / templates / postorius / domain_index.html
@Florian Fuchs Florian Fuchs on 23 Mar 2012 844 bytes removed mailmanweb remains
{% extends "postorius/base.html" %}
{% load i18n %}

{% block main %}
    {% include 'postorius/menu/settings_nav.html' %}
    <h1>{% trans "Domain Index" %}</h1>

    <table class="table table-bordered table-striped">
    	<thead>
    		<tr>
                <th>Mail Host</th>
                <th>URL Host</th>
                <th>Contact Address</th>
                <th>Description</th>
                <th>&nbsp;</th>
    		</tr>
    	</thead>
    	<tbody>
            {% for domain in domains %}
    		<tr>
    			<td>{{ domain.mail_host }}</td>
    			<td>{{ domain.base_url }}</td>
    			<td>{{ domain.contact_address }}</td>
    			<td>{{ domain.description }}</td>
    			<td><a href="#" class="btn btn-mini btn-danger">{% trans 'Delete' %}</a></td>
    		</tr>
            {% endfor %}
    	</tbody>
    </table>
{% endblock main %}