letsencrpt: Remove unnecessary column sizing

Signed-off-by: Manish Tripathy <manisht@thougtworks.com>
Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org>
Reviewed-by: Sunil Mohan Adapa <sunil@medhas.org>
This commit is contained in:
Sunil Mohan Adapa 2018-06-18 19:22:18 +05:30
parent ce7f101830
commit 9c9998d041
No known key found for this signature in database
GPG Key ID: 43EA1CFF0AA7C5F2

View File

@ -38,104 +38,100 @@
<h3>{% trans "Configuration" %}</h3> <h3>{% trans "Configuration" %}</h3>
{% if status.domains %} {% if status.domains %}
<div class="row"> <table class="table table-bordered table-condensed table-striped">
<div class="col-lg-12"> <thead>
<table class="table table-bordered table-condensed table-striped"> <tr>
<thead> <th>{% trans "Domain" %}</th>
<tr> <th>{% trans "Certificate Status" %}</th>
<th>{% trans "Domain" %}</th> <th>{% trans "Website Security" %}</th>
<th>{% trans "Certificate Status" %}</th> <th>{% trans "Actions" %}</th>
<th>{% trans "Website Security" %}</th> </tr>
<th>{% trans "Actions" %}</th> </thead>
</tr> <tbody>
</thead> {% for domain, domain_status in status.domains.items %}
<tbody> <tr>
{% for domain, domain_status in status.domains.items %} <td>
<tr> {% if domain == status.current_domain.name %}
<td> <b>{{ domain }}</b>
{% if domain == status.current_domain.name %} {% else %}
<b>{{ domain }}</b> {{ domain }}
{% endif %}
</td>
<td>
{% if domain_status.certificate_available and domain_status.validity == "valid" %}
<span class="label label-success">
{% blocktrans trimmed with expiry_date=domain_status.expiry_date %}
Valid, expires on {{ expiry_date }}
{% endblocktrans %}
</span>
{% elif domain_status.certificate_available and not domain_status.validity == "valid" %}
<span class="label label-warning">
{% if "revoked" in domain_status.validity %}
{% blocktrans trimmed %}
Revoked
{% endblocktrans %}
{% elif "expired" in domain_status.validity %}
{% blocktrans trimmed with expiry_date=domain_status.expiry_date %}
Expired on {{ expiry_date }}
{% endblocktrans %}
{% elif "test" in domain_status.validity %}
{% blocktrans trimmed %}
Invalid test certificate
{% endblocktrans %}
{% else %} {% else %}
{{ domain }} {% blocktrans trimmed with reason=domain_status.validity %}
Invalid ({{ reason }})
{% endblocktrans %}
{% endif %} {% endif %}
</td> </span>
<td> {% else %}
{% if domain_status.certificate_available and domain_status.validity == "valid" %} <span class="label label-warning">
<span class="label label-success"> {% trans "No certificate" %}
{% blocktrans trimmed with expiry_date=domain_status.expiry_date %} </span>
Valid, expires on {{ expiry_date }} {% endif %}
{% endblocktrans %} </td>
</span> <td>
{% elif domain_status.certificate_available and not domain_status.validity == "valid" %} {% if domain_status.web_enabled %}
<span class="label label-warning"> <span class="label label-success">{% trans "Enabled" %}</span>
{% if "revoked" in domain_status.validity %} {% else %}
{% blocktrans trimmed %} <span class="label label-warning">{% trans "Disabled" %}</span>
Revoked {% endif %}
{% endblocktrans %} </td>
{% elif "expired" in domain_status.validity %} <td>
{% blocktrans trimmed with expiry_date=domain_status.expiry_date %} {% if domain_status.certificate_available %}
Expired on {{ expiry_date }} <form class="form form-inline" method="post"
{% endblocktrans %} action="{% url 'letsencrypt:obtain' domain %}">
{% elif "test" in domain_status.validity %} {% csrf_token %}
{% blocktrans trimmed %} <button class="btn btn-sm btn-default" type="submit">
Invalid test certificate {% trans "Re-obtain" %}</button>
{% endblocktrans %} </form>
{% else %} <form class="form form-inline" method="post"
{% blocktrans trimmed with reason=domain_status.validity %} action="{% url 'letsencrypt:delete' domain %}">
Invalid ({{ reason }}) {% csrf_token %}
{% endblocktrans %} <button class="btn btn-sm btn-default" type="submit">
{% endif %} {% trans "Delete" %}</button>
</span> </form>
{% else %} {% if "revoked" not in domain_status.validity %}
<span class="label label-warning"> <form class="form form-inline" method="post"
{% trans "No certificate" %} action="{% url 'letsencrypt:revoke' domain %}">
</span> {% csrf_token %}
{% endif %} <button class="btn btn-sm btn-default" type="submit">
</td> {% trans "Revoke" %}</button>
<td> </form>
{% if domain_status.web_enabled %} {% endif %}
<span class="label label-success">{% trans "Enabled" %}</span> {% else %}
{% else %} <form class="form form-inline" method="post"
<span class="label label-warning">{% trans "Disabled" %}</span> action="{% url 'letsencrypt:obtain' domain %}">
{% endif %} {% csrf_token %}
</td> <button class="btn btn-sm btn-primary" type="submit">
<td> {% trans "Obtain" %}</button>
{% if domain_status.certificate_available %} </form>
<form class="form form-inline" method="post" {% endif %}
action="{% url 'letsencrypt:obtain' domain %}"> </td>
{% csrf_token %} </tr>
<button class="btn btn-sm btn-default" type="submit"> {% endfor %}
{% trans "Re-obtain" %}</button> </tbody>
</form> </table>
<form class="form form-inline" method="post"
action="{% url 'letsencrypt:delete' domain %}">
{% csrf_token %}
<button class="btn btn-sm btn-default" type="submit">
{% trans "Delete" %}</button>
</form>
{% if "revoked" not in domain_status.validity %}
<form class="form form-inline" method="post"
action="{% url 'letsencrypt:revoke' domain %}">
{% csrf_token %}
<button class="btn btn-sm btn-default" type="submit">
{% trans "Revoke" %}</button>
</form>
{% endif %}
{% else %}
<form class="form form-inline" method="post"
action="{% url 'letsencrypt:obtain' domain %}">
{% csrf_token %}
<button class="btn btn-sm btn-primary" type="submit">
{% trans "Obtain" %}</button>
</form>
{% endif %}
</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
</div>
{% include "diagnostics_button.html" with module="letsencrypt" enabled=True %} {% include "diagnostics_button.html" with module="letsencrypt" enabled=True %}