Remove DNSSEC modal. Adjustment in domain table css

This commit is contained in:
Khanh Ngo
2018-04-01 14:45:13 +07:00
parent 5df7fe445f
commit f172a64ddd
2 changed files with 3 additions and 45 deletions

View File

@ -4,13 +4,9 @@
{% macro dnssec(domain) %}
{% if domain.dnssec %}
<button type="button" class="btn btn-flat dnssec btn-success button_dnssec" id="{{ domain.name }}" style="width:100%;">
<i class="fa fa-lock"></i>&nbsp;Enabled
</button>
<td><span class="label label-success"><i class="fa fa-lock-alt"></i>&nbsp;Enabled</span></td>
{% else %}
<button type="button" class="btn btn-flat dnssec button_dnssec" id="{{ domain.name }}" style="width:100%;">
<i class="fa fa-unlock-alt"></i>&nbsp;Disabled
</button>
<td><span class="label label-primary"><i class="fa fa-unlock-alt"></i>&nbsp;Disabled</span></td>
{% endif %}
{% endmacro %}