72 lines
2.6 KiB
Twig
72 lines
2.6 KiB
Twig
<fieldset>
|
|
<legend>{{ heading_title }}</legend>
|
|
<div id="blockerError" style="display: none;" class="alert alert-danger">
|
|
<i class="fa fa-exclamation-circle"></i> {{ error_adblock }}
|
|
</div>
|
|
{% if error_warning %}
|
|
<div class="alert alert-danger alert-dismissible"><i class="fa fa-exclamation-circle"></i> {{ error_warning }}
|
|
<button type="button" class="close" data-dismiss="alert">×</button>
|
|
</div>
|
|
{% endif %}
|
|
{% if success %}
|
|
<div class="alert alert-success alert-dismissible"><i class="fa fa-check-circle"></i> {{ success }}
|
|
<button type="button" class="close" data-dismiss="alert">×</button>
|
|
</div>
|
|
{% endif %}
|
|
<div class="table-responsive">
|
|
<table class="table table-bordered table-hover">
|
|
<thead>
|
|
<tr>
|
|
<td class="text-left">{{ column_name }}</td>
|
|
<td class="text-left">{{ column_status }}</td>
|
|
<td class="text-right">{{ column_action }}</td>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% if extensions %}
|
|
{% for extension in extensions %}
|
|
<tr>
|
|
<td class="text-left" colspan="2"><b>{{ extension.name }}</b></td>
|
|
<td class="text-right">{% if not extension.installed %}
|
|
<a href="{{ extension.install }}" data-toggle="tooltip" title="{{ button_install }}" class="btn btn-success"><i class="fa fa-plus-circle"></i></a>
|
|
{% else %}
|
|
<a href="{{ extension.uninstall }}" data-toggle="tooltip" title="{{ button_uninstall }}" class="btn btn-danger"><i class="fa fa-minus-circle"></i></a>
|
|
{% endif %}</td>
|
|
</tr>
|
|
{% if extension.installed %}
|
|
{% for store in extension.store %}
|
|
<tr>
|
|
<td class="text-left"> - {{ store.name }}</td>
|
|
<td class="text-left">{{ store.status }}</td>
|
|
<td class="text-right"><a href="{{ store.edit }}" data-toggle="tooltip" title="{{ button_edit }}" class="btn btn-primary"><i class="fa fa-pencil"></i></a></td>
|
|
</tr>
|
|
{% endfor %}
|
|
{% endif %}
|
|
{% endfor %}
|
|
{% else %}
|
|
<tr>
|
|
<td class="text-center" colspan="3">{{ text_no_results }}</td>
|
|
</tr>
|
|
{% endif %}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</fieldset>
|
|
<style type="text/css">
|
|
.adBanner {
|
|
background-color: transparent;
|
|
height: 1px;
|
|
width: 1px;
|
|
}
|
|
</style>
|
|
<div id="wrapTest">
|
|
<div class="adBanner">
|
|
</div>
|
|
</div>
|
|
<script type="text/javascript">
|
|
(function($) {
|
|
$(document).ready(function() {
|
|
$('#blockerError').toggle($("#wrapTest").height() == 0);
|
|
});
|
|
})(jQuery);
|
|
</script> |