first commit
This commit is contained in:
42
admininistrator/view/template/extension/analytics.twig
Normal file
42
admininistrator/view/template/extension/analytics.twig
Normal file
@@ -0,0 +1,42 @@
|
||||
{{ promotion }}
|
||||
<fieldset>
|
||||
<legend>{{ heading_title }}</legend>
|
||||
<div class="table-responsive">
|
||||
<table class="table table-bordered table-hover">
|
||||
<thead>
|
||||
<tr>
|
||||
<td class="text-start">{{ column_name }}</td>
|
||||
<td class="text-start">{{ column_status }}</td>
|
||||
<td class="text-end">{{ column_action }}</td>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
{% if extensions %}
|
||||
{% for extension in extensions %}
|
||||
<tr>
|
||||
<td class="text-start" colspan="2"><b>{{ extension.name }}</b></td>
|
||||
<td class="text-end">{% if not extension.installed %}
|
||||
<a href="{{ extension.install }}" data-bs-toggle="tooltip" title="{{ button_install }}" class="btn btn-success"><i class="fa-solid fa-plus-circle"></i></a>
|
||||
{% else %}
|
||||
<a href="{{ extension.uninstall }}" data-bs-toggle="tooltip" title="{{ button_uninstall }}" class="btn btn-danger"><i class="fa-solid fa-minus-circle"></i></a>
|
||||
{% endif %}</td>
|
||||
</tr>
|
||||
{% if extension.installed %}
|
||||
{% for store in extension.store %}
|
||||
<tr>
|
||||
<td class="text-start"> - {{ store.name }}</td>
|
||||
<td class="text-start">{{ store.status }}</td>
|
||||
<td class="text-end text-nowrap"><a href="{{ store.edit }}" data-bs-toggle="tooltip" title="{{ button_edit }}" class="btn btn-primary"><i class="fa-solid 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>
|
31
admininistrator/view/template/extension/captcha.twig
Normal file
31
admininistrator/view/template/extension/captcha.twig
Normal file
@@ -0,0 +1,31 @@
|
||||
{{ promotion }}
|
||||
<fieldset>
|
||||
<legend>{{ heading_title }}</legend>
|
||||
<div class="table-responsive">
|
||||
<table class="table table-bordered table-hover">
|
||||
<thead>
|
||||
<tr>
|
||||
<td class="text-start">{{ column_name }}</td>
|
||||
<td class="text-start">{{ column_status }}</td>
|
||||
<td class="text-end">{{ column_action }}</td>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
{% if extensions %}
|
||||
{% for extension in extensions %}
|
||||
<tr>
|
||||
<td class="text-start">{{ extension.name }}</td>
|
||||
<td class="text-start">{{ extension.status }}</td>
|
||||
<td class="text-end text-nowrap">{% if extension.installed %}<a href="{{ extension.edit }}" data-bs-toggle="tooltip" title="{{ button_edit }}" class="btn btn-primary"><i class="fa-solid fa-pencil"></i></a>{% else %}<button type="button" class="btn btn-primary" disabled="disabled"><i class="fa-solid fa-pencil"></i></button>{% endif %}
|
||||
{% if not extension.installed %} <a href="{{ extension.install }}" data-bs-toggle="tooltip" title="{{ button_install }}" class="btn btn-success"><i class="fa-solid fa-plus-circle"></i></a> {% else %} <a href="{{ extension.uninstall }}" data-bs-toggle="tooltip" title="{{ button_uninstall }}" class="btn btn-danger"><i class="fa-solid fa-minus-circle"></i></a>{% endif %}</td>
|
||||
</tr>
|
||||
{% endfor %}
|
||||
{% else %}
|
||||
<tr>
|
||||
<td class="text-center" colspan="3">{{ text_no_results }}</td>
|
||||
</tr>
|
||||
{% endif %}
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</fieldset>
|
31
admininistrator/view/template/extension/currency.twig
Normal file
31
admininistrator/view/template/extension/currency.twig
Normal file
@@ -0,0 +1,31 @@
|
||||
{{ promotion }}
|
||||
<fieldset>
|
||||
<legend>{{ heading_title }}</legend>
|
||||
<div class="table-responsive">
|
||||
<table class="table table-bordered table-hover">
|
||||
<thead>
|
||||
<tr>
|
||||
<td class="text-start">{{ column_name }}</td>
|
||||
<td class="text-start">{{ column_status }}</td>
|
||||
<td class="text-end">{{ column_action }}</td>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
{% if extensions %}
|
||||
{% for extension in extensions %}
|
||||
<tr>
|
||||
<td class="text-start">{{ extension.name }}</td>
|
||||
<td class="text-start">{{ extension.status }}</td>
|
||||
<td class="text-end text-nowrap">{% if extension.installed %}<a href="{{ extension.edit }}" data-bs-toggle="tooltip" title="{{ button_edit }}" class="btn btn-primary"><i class="fa-solid fa-pencil"></i></a>{% else %}<button type="button" class="btn btn-primary" disabled="disabled"><i class="fa-solid fa-pencil"></i></button>{% endif %}
|
||||
{% if not extension.installed %}<a href="{{ extension.install }}" data-bs-toggle="tooltip" title="{{ button_install }}" class="btn btn-success"><i class="fa-solid fa-plus-circle"></i></a>{% else %}<a href="{{ extension.uninstall }}" data-bs-toggle="tooltip" title="{{ button_uninstall }}" class="btn btn-danger"><i class="fa-solid fa-minus-circle"></i></a>{% endif %}</td>
|
||||
</tr>
|
||||
{% endfor %}
|
||||
{% else %}
|
||||
<tr>
|
||||
<td class="text-center" colspan="3">{{ text_no_results }}</td>
|
||||
</tr>
|
||||
{% endif %}
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</fieldset>
|
43
admininistrator/view/template/extension/dashboard.twig
Normal file
43
admininistrator/view/template/extension/dashboard.twig
Normal file
@@ -0,0 +1,43 @@
|
||||
{{ promotion }}
|
||||
<fieldset>
|
||||
<legend>{{ heading_title }}</legend>
|
||||
<div class="table-responsive">
|
||||
<table class="table table-bordered table-hover">
|
||||
<thead>
|
||||
<tr>
|
||||
<td class="text-start">{{ column_name }}</td>
|
||||
<td class="text-end">{{ column_width }}</td>
|
||||
<td class="text-start">{{ column_status }}</td>
|
||||
<td class="text-end">{{ column_sort_order }}</td>
|
||||
<td class="text-end">{{ column_action }}</td>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
{% if extensions %}
|
||||
{% for extension in extensions %}
|
||||
<tr>
|
||||
<td class="text-start">{{ extension.name }}</td>
|
||||
<td class="text-end">{{ extension.width }}</td>
|
||||
<td class="text-start">{{ extension.status }}</td>
|
||||
<td class="text-end">{{ extension.sort_order }}</td>
|
||||
<td class="text-end text-nowrap">{% if extension.installed %}
|
||||
<a href="{{ extension.edit }}" data-bs-toggle="tooltip" title="{{ button_edit }}" class="btn btn-primary"><i class="fa-solid fa-pencil"></i></a>
|
||||
{% else %}
|
||||
<button type="button" class="btn btn-primary" disabled="disabled"><i class="fa-solid fa-pencil"></i></button>
|
||||
{% endif %}
|
||||
{% if not extension.installed %}
|
||||
<a href="{{ extension.install }}" data-bs-toggle="tooltip" title="{{ button_install }}" class="btn btn-success"><i class="fa-solid fa-plus-circle"></i></a>
|
||||
{% else %}
|
||||
<a href="{{ extension.uninstall }}" data-bs-toggle="tooltip" title="{{ button_uninstall }}" class="btn btn-danger"><i class="fa-solid fa-minus-circle"></i></a>
|
||||
{% endif %}</td>
|
||||
</tr>
|
||||
{% endfor %}
|
||||
{% else %}
|
||||
<tr>
|
||||
<td class="text-center" colspan="3">{{ text_no_results }}</td>
|
||||
</tr>
|
||||
{% endif %}
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</fieldset>
|
39
admininistrator/view/template/extension/feed.twig
Normal file
39
admininistrator/view/template/extension/feed.twig
Normal file
@@ -0,0 +1,39 @@
|
||||
{{ promotion }}
|
||||
<fieldset>
|
||||
<legend>{{ heading_title }}</legend>
|
||||
<div class="table-responsive">
|
||||
<table class="table table-bordered table-hover">
|
||||
<thead>
|
||||
<tr>
|
||||
<td class="text-start">{{ column_name }}</td>
|
||||
<td class="text-start">{{ column_status }}</td>
|
||||
<td class="text-end">{{ column_action }}</td>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
{% if extensions %}
|
||||
{% for extension in extensions %}
|
||||
<tr>
|
||||
<td class="text-start">{{ extension.name }}</td>
|
||||
<td class="text-start">{{ extension.status }}</td>
|
||||
<td class="text-end text-nowrap">{% if extension.installed %}
|
||||
<a href="{{ extension.edit }}" data-bs-toggle="tooltip" title="{{ button_edit }}" class="btn btn-primary"><i class="fa-solid fa-pencil"></i></a>
|
||||
{% else %}
|
||||
<button type="button" class="btn btn-primary" disabled="disabled"><i class="fa-solid fa-pencil"></i></button>
|
||||
{% endif %}
|
||||
{% if not extension.installed %}
|
||||
<a href="{{ extension.install }}" data-bs-toggle="tooltip" title="{{ button_install }}" class="btn btn-success"><i class="fa-solid fa-plus-circle"></i></a>
|
||||
{% else %}
|
||||
<a href="{{ extension.uninstall }}" data-bs-toggle="tooltip" title="{{ button_uninstall }}" class="btn btn-danger"><i class="fa-solid fa-minus-circle"></i></a>
|
||||
{% endif %}</td>
|
||||
</tr>
|
||||
{% endfor %}
|
||||
{% else %}
|
||||
<tr>
|
||||
<td class="text-center" colspan="3">{{ text_no_results }}</td>
|
||||
</tr>
|
||||
{% endif %}
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</fieldset>
|
39
admininistrator/view/template/extension/fraud.twig
Normal file
39
admininistrator/view/template/extension/fraud.twig
Normal file
@@ -0,0 +1,39 @@
|
||||
{{ promotion }}
|
||||
<fieldset>
|
||||
<legend>{{ heading_title }}</legend>
|
||||
<div class="table-responsive">
|
||||
<table class="table table-bordered table-hover">
|
||||
<thead>
|
||||
<tr>
|
||||
<td class="text-start">{{ column_name }}</td>
|
||||
<td class="text-start">{{ column_status }}</td>
|
||||
<td class="text-end">{{ column_action }}</td>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
{% if extensions %}
|
||||
{% for extension in extensions %}
|
||||
<tr>
|
||||
<td class="text-start">{{ extension.name }}</td>
|
||||
<td class="text-start">{{ extension.status }}</td>
|
||||
<td class="text-end text-nowrap">{% if extension.installed %}
|
||||
<a href="{{ extension.edit }}" data-bs-toggle="tooltip" title="{{ button_edit }}" class="btn btn-primary"><i class="fa-solid fa-pencil"></i></a>
|
||||
{% else %}
|
||||
<button type="button" class="btn btn-primary" disabled="disabled"><i class="fa-solid fa-pencil"></i></button>
|
||||
{% endif %}
|
||||
{% if not extension.installed %}
|
||||
<a href="{{ extension.install }}" data-bs-toggle="tooltip" title="{{ button_install }}" class="btn btn-success"><i class="fa-solid fa-plus-circle"></i></a>
|
||||
{% else %}
|
||||
<a href="{{ extension.uninstall }}" data-bs-toggle="tooltip" title="{{ button_uninstall }}" class="btn btn-danger"><i class="fa-solid fa-minus-circle"></i></a>
|
||||
{% endif %}</td>
|
||||
</tr>
|
||||
{% endfor %}
|
||||
{% else %}
|
||||
<tr>
|
||||
<td class="text-center" colspan="3">{{ text_no_results }}</td>
|
||||
</tr>
|
||||
{% endif %}
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</fieldset>
|
39
admininistrator/view/template/extension/language.twig
Normal file
39
admininistrator/view/template/extension/language.twig
Normal file
@@ -0,0 +1,39 @@
|
||||
{{ promotion }}
|
||||
<fieldset>
|
||||
<legend>{{ heading_title }}</legend>
|
||||
<div class="table-responsive">
|
||||
<table class="table table-bordered table-hover">
|
||||
<thead>
|
||||
<tr>
|
||||
<td class="text-start">{{ column_name }}</td>
|
||||
<td class="text-start">{{ column_status }}</td>
|
||||
<td class="text-end">{{ column_action }}</td>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
{% if extensions %}
|
||||
{% for extension in extensions %}
|
||||
<tr>
|
||||
<td class="text-start">{{ extension.name }}</td>
|
||||
<td class="text-start">{{ extension.status }}</td>
|
||||
<td class="text-end text-nowrap">{% if extension.installed %}
|
||||
<a href="{{ extension.edit }}" data-bs-toggle="tooltip" title="{{ button_edit }}" class="btn btn-primary"><i class="fa-solid fa-pencil"></i></a>
|
||||
{% else %}
|
||||
<button type="button" class="btn btn-primary" disabled="disabled"><i class="fa-solid fa-pencil"></i></button>
|
||||
{% endif %}
|
||||
{% if not extension.installed %}
|
||||
<a href="{{ extension.install }}" data-bs-toggle="tooltip" title="{{ button_install }}" class="btn btn-success"><i class="fa-solid fa-plus-circle"></i></a>
|
||||
{% else %}
|
||||
<a href="{{ extension.uninstall }}" data-bs-toggle="tooltip" title="{{ button_uninstall }}" class="btn btn-danger"><i class="fa-solid fa-minus-circle"></i></a>
|
||||
{% endif %}</td>
|
||||
</tr>
|
||||
{% endfor %}
|
||||
{% else %}
|
||||
<tr>
|
||||
<td class="text-center" colspan="3">{{ text_no_results }}</td>
|
||||
</tr>
|
||||
{% endif %}
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</fieldset>
|
44
admininistrator/view/template/extension/marketplace.twig
Normal file
44
admininistrator/view/template/extension/marketplace.twig
Normal file
@@ -0,0 +1,44 @@
|
||||
{{ promotion }}
|
||||
<fieldset>
|
||||
<legend>{{ heading_title }}</legend>
|
||||
<div class="table-responsive">
|
||||
<table class="table table-bordered table-hover">
|
||||
<thead>
|
||||
<tr>
|
||||
<td class="text-start">{{ column_name }}</td>
|
||||
<td class="text-start">{{ column_status }}</td>
|
||||
<td class="text-end">{{ column_action }}</td>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
{% if extensions %}
|
||||
{% for extension in extensions %}
|
||||
<tr>
|
||||
<td class="text-start">{{ extension.name }}</td>
|
||||
<td class="text-start">{{ extension.status }}</td>
|
||||
<td class="text-end text-nowrap">
|
||||
|
||||
{% if extension.installed %}
|
||||
<a href="{{ extension.edit }}" data-bs-toggle="tooltip" title="{{ button_edit }}" class="btn btn-primary"><i class="fa-solid fa-pencil"></i></a>
|
||||
{% else %}
|
||||
<button type="button" class="btn btn-primary" disabled="disabled"><i class="fa-solid fa-pencil"></i></button>
|
||||
{% endif %}
|
||||
|
||||
{% if not extension.installed %}
|
||||
<a href="{{ extension.install }}" data-bs-toggle="tooltip" title="{{ button_install }}" class="btn btn-success"><i class="fa-solid fa-plus-circle"></i></a>
|
||||
{% else %}
|
||||
<a href="{{ extension.uninstall }}" data-bs-toggle="tooltip" title="{{ button_uninstall }}" class="btn btn-danger"><i class="fa-solid fa-minus-circle"></i></a>
|
||||
{% endif %}
|
||||
|
||||
</td>
|
||||
</tr>
|
||||
{% endfor %}
|
||||
{% else %}
|
||||
<tr>
|
||||
<td class="text-center" colspan="3">{{ text_no_results }}</td>
|
||||
</tr>
|
||||
{% endif %}
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</fieldset>
|
52
admininistrator/view/template/extension/module.twig
Normal file
52
admininistrator/view/template/extension/module.twig
Normal file
@@ -0,0 +1,52 @@
|
||||
{{ promotion }}
|
||||
<fieldset>
|
||||
<legend>{{ heading_title }}</legend>
|
||||
<div class="alert alert-info"><i class="fa-solid fa-info-circle"></i> {{ text_layout }}</div>
|
||||
<div class="table-responsive">
|
||||
<table class="table table-bordered table-hover">
|
||||
<thead>
|
||||
<tr>
|
||||
<td class="text-start">{{ column_name }}</td>
|
||||
<td class="text-start">{{ column_status }}</td>
|
||||
<td class="text-end">{{ column_action }}</td>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
{% if extensions %}
|
||||
{% for extension in extensions %}
|
||||
<tr>
|
||||
<td><b>{{ extension.name }}</b></td>
|
||||
<td>{{ extension.status }}</td>
|
||||
<td class="text-end text-nowrap">
|
||||
{% if extension.installed %}
|
||||
{% if extension.module %}
|
||||
<a href="{{ extension.edit }}" data-bs-toggle="tooltip" title="{{ button_add }}" class="btn btn-primary"><i class="fa-solid fa-plus-circle"></i></a>
|
||||
{% else %}
|
||||
<a href="{{ extension.edit }}" data-bs-toggle="tooltip" title="{{ button_edit }}" class="btn btn-primary"><i class="fa-solid fa-pencil"></i></a>
|
||||
{% endif %}
|
||||
{% else %}
|
||||
<button type="button" class="btn btn-primary" disabled="disabled"><i class="fa-solid fa-pencil"></i></button>
|
||||
{% endif %}
|
||||
{% if not extension.installed %}
|
||||
<a href="{{ extension.install }}" data-bs-toggle="tooltip" title="{{ button_install }}" class="btn btn-success"><i class="fa-solid fa-plus-circle"></i></a>
|
||||
{% else %}
|
||||
<a href="{{ extension.uninstall }}" data-bs-toggle="tooltip" title="{{ button_uninstall }}" class="btn btn-danger"><i class="fa-solid fa-minus-circle"></i></a>
|
||||
{% endif %}</td>
|
||||
</tr>
|
||||
{% for module in extension.module %}
|
||||
<tr>
|
||||
<td class="text-start"> <i class="fa-solid fa-folder-open"></i> {{ module.name }}</td>
|
||||
<td class="text-start">{{ module.status }}</td>
|
||||
<td class="text-end text-nowrap"><a href="{{ module.edit }}" data-bs-toggle="tooltip" title="{{ button_edit }}" class="btn btn-outline-primary"><i class="fa-solid fa-pencil"></i></a> <a href="{{ module.delete }}" data-bs-toggle="tooltip" title="{{ button_delete }}" class="btn btn-outline-danger"><i class="fa-regular fa-trash-can"></i></a></td>
|
||||
</tr>
|
||||
{% endfor %}
|
||||
{% endfor %}
|
||||
{% else %}
|
||||
<tr>
|
||||
<td class="text-center" colspan="3">{{ text_no_results }}</td>
|
||||
</tr>
|
||||
{% endif %}
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</fieldset>
|
39
admininistrator/view/template/extension/other.twig
Normal file
39
admininistrator/view/template/extension/other.twig
Normal file
@@ -0,0 +1,39 @@
|
||||
{{ promotion }}
|
||||
<fieldset>
|
||||
<legend>{{ heading_title }}</legend>
|
||||
<div class="table-responsive">
|
||||
<table class="table table-bordered table-hover">
|
||||
<thead>
|
||||
<tr>
|
||||
<td class="text-start">{{ column_name }}</td>
|
||||
<td class="text-start">{{ column_status }}</td>
|
||||
<td class="text-end">{{ column_action }}</td>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
{% if extensions %}
|
||||
{% for extension in extensions %}
|
||||
<tr>
|
||||
<td class="text-start">{{ extension.name }}</td>
|
||||
<td class="text-start">{{ extension.status }}</td>
|
||||
<td class="text-end text-nowrap">{% if extension.installed %}
|
||||
<a href="{{ extension.edit }}" data-bs-toggle="tooltip" title="{{ button_edit }}" class="btn btn-primary"><i class="fa-solid fa-pencil"></i></a>
|
||||
{% else %}
|
||||
<button type="button" class="btn btn-primary" disabled="disabled"><i class="fa-solid fa-pencil"></i></button>
|
||||
{% endif %}
|
||||
{% if not extension.installed %}
|
||||
<a href="{{ extension.install }}" data-bs-toggle="tooltip" title="{{ button_install }}" class="btn btn-success"><i class="fa-solid fa-plus-circle"></i></a>
|
||||
{% else %}
|
||||
<a href="{{ extension.uninstall }}" data-bs-toggle="tooltip" title="{{ button_uninstall }}" class="btn btn-danger"><i class="fa-solid fa-minus-circle"></i></a>
|
||||
{% endif %}</td>
|
||||
</tr>
|
||||
{% endfor %}
|
||||
{% else %}
|
||||
<tr>
|
||||
<td class="text-center" colspan="3">{{ text_no_results }}</td>
|
||||
</tr>
|
||||
{% endif %}
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</fieldset>
|
43
admininistrator/view/template/extension/payment.twig
Normal file
43
admininistrator/view/template/extension/payment.twig
Normal file
@@ -0,0 +1,43 @@
|
||||
{{ promotion }}
|
||||
<fieldset>
|
||||
<legend>{{ heading_title }}</legend>
|
||||
<div class="table-responsive">
|
||||
<table class="table table-bordered table-hover">
|
||||
<thead>
|
||||
<tr>
|
||||
<td class="text-start">{{ column_name }}</td>
|
||||
<td class="text-center">{{ column_vendor }}</td>
|
||||
<td class="text-start">{{ column_status }}</td>
|
||||
<td class="text-end">{{ column_sort_order }}</td>
|
||||
<td class="text-end">{{ column_action }}</td>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
{% if extensions %}
|
||||
{% for extension in extensions %}
|
||||
<tr>
|
||||
<td class="text-start">{{ extension.name }}</td>
|
||||
<td class="text-center">{{ extension.link }}</td>
|
||||
<td class="text-start">{{ extension.status }}</td>
|
||||
<td class="text-end">{{ extension.sort_order }}</td>
|
||||
<td class="text-end text-nowrap">{% if extension.installed %}
|
||||
<a href="{{ extension.edit }}" data-bs-toggle="tooltip" title="{{ button_edit }}" class="btn btn-primary"><i class="fa-solid fa-pencil"></i></a>
|
||||
{% else %}
|
||||
<button type="button" class="btn btn-primary" disabled="disabled"><i class="fa-solid fa-pencil"></i></button>
|
||||
{% endif %}
|
||||
{% if not extension.installed %}
|
||||
<a href="{{ extension.install }}" data-bs-toggle="tooltip" title="{{ button_install }}" class="btn btn-success"><i class="fa-solid fa-plus-circle"></i></a>
|
||||
{% else %}
|
||||
<a href="{{ extension.uninstall }}" data-bs-toggle="tooltip" title="{{ button_uninstall }}" class="btn btn-danger"><i class="fa-solid fa-minus-circle"></i></a>
|
||||
{% endif %}</td>
|
||||
</tr>
|
||||
{% endfor %}
|
||||
{% else %}
|
||||
<tr>
|
||||
<td class="text-center" colspan="5">{{ text_no_results }}</td>
|
||||
</tr>
|
||||
{% endif %}
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</fieldset>
|
41
admininistrator/view/template/extension/report.twig
Normal file
41
admininistrator/view/template/extension/report.twig
Normal file
@@ -0,0 +1,41 @@
|
||||
{{ promotion }}
|
||||
<fieldset>
|
||||
<legend>{{ heading_title }}</legend>
|
||||
<div class="table-responsive">
|
||||
<table class="table table-bordered table-hover">
|
||||
<thead>
|
||||
<tr>
|
||||
<td class="text-start">{{ column_name }}</td>
|
||||
<td class="text-start">{{ column_status }}</td>
|
||||
<td class="text-end">{{ column_sort_order }}</td>
|
||||
<td class="text-end">{{ column_action }}</td>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
{% if extensions %}
|
||||
{% for extension in extensions %}
|
||||
<tr>
|
||||
<td class="text-start">{{ extension.name }}</td>
|
||||
<td class="text-start">{{ extension.status }}</td>
|
||||
<td class="text-end">{{ extension.sort_order }}</td>
|
||||
<td class="text-end text-nowrap">{% if extension.installed %}
|
||||
<a href="{{ extension.edit }}" data-bs-toggle="tooltip" title="{{ button_edit }}" class="btn btn-primary"><i class="fa-solid fa-pencil"></i></a>
|
||||
{% else %}
|
||||
<button type="button" class="btn btn-primary" disabled="disabled"><i class="fa-solid fa-pencil"></i></button>
|
||||
{% endif %}
|
||||
{% if not extension.installed %}
|
||||
<a href="{{ extension.install }}" data-bs-toggle="tooltip" title="{{ button_install }}" class="btn btn-success"><i class="fa-solid fa-plus-circle"></i></a>
|
||||
{% else %}
|
||||
<a href="{{ extension.uninstall }}" data-bs-toggle="tooltip" title="{{ button_uninstall }}" class="btn btn-danger"><i class="fa-solid fa-minus-circle"></i></a>
|
||||
{% endif %}</td>
|
||||
</tr>
|
||||
{% endfor %}
|
||||
{% else %}
|
||||
<tr>
|
||||
<td class="text-center" colspan="4">{{ text_no_results }}</td>
|
||||
</tr>
|
||||
{% endif %}
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</fieldset>
|
41
admininistrator/view/template/extension/shipping.twig
Normal file
41
admininistrator/view/template/extension/shipping.twig
Normal file
@@ -0,0 +1,41 @@
|
||||
{{ promotion }}
|
||||
<fieldset>
|
||||
<legend>{{ heading_title }}</legend>
|
||||
<div class="table-responsive">
|
||||
<table class="table table-bordered table-hover">
|
||||
<thead>
|
||||
<tr>
|
||||
<td class="text-start">{{ column_name }}</td>
|
||||
<td class="text-start">{{ column_status }}</td>
|
||||
<td class="text-end">{{ column_sort_order }}</td>
|
||||
<td class="text-end">{{ column_action }}</td>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
{% if extensions %}
|
||||
{% for extension in extensions %}
|
||||
<tr>
|
||||
<td class="text-start">{{ extension.name }}</td>
|
||||
<td class="text-start">{{ extension.status }}</td>
|
||||
<td class="text-end">{{ extension.sort_order }}</td>
|
||||
<td class="text-end text-nowrap">{% if extension.installed %}
|
||||
<a href="{{ extension.edit }}" data-bs-toggle="tooltip" title="{{ button_edit }}" class="btn btn-primary"><i class="fa-solid fa-pencil"></i></a>
|
||||
{% else %}
|
||||
<button type="button" class="btn btn-primary" disabled="disabled"><i class="fa-solid fa-pencil"></i></button>
|
||||
{% endif %}
|
||||
{% if not extension.installed %}
|
||||
<a href="{{ extension.install }}" data-bs-toggle="tooltip" title="{{ button_install }}" class="btn btn-success"><i class="fa-solid fa-plus-circle"></i></a>
|
||||
{% else %}
|
||||
<a href="{{ extension.uninstall }}" data-bs-toggle="tooltip" title="{{ button_uninstall }}" class="btn btn-danger"><i class="fa-solid fa-minus-circle"></i></a>
|
||||
{% endif %}</td>
|
||||
</tr>
|
||||
{% endfor %}
|
||||
{% else %}
|
||||
<tr>
|
||||
<td class="text-center" colspan="4">{{ text_no_results }}</td>
|
||||
</tr>
|
||||
{% endif %}
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</fieldset>
|
42
admininistrator/view/template/extension/theme.twig
Normal file
42
admininistrator/view/template/extension/theme.twig
Normal file
@@ -0,0 +1,42 @@
|
||||
{{ promotion }}
|
||||
<fieldset>
|
||||
<legend>{{ heading_title }}</legend>
|
||||
<div class="table-responsive">
|
||||
<table class="table table-bordered table-hover">
|
||||
<thead>
|
||||
<tr>
|
||||
<td class="text-start">{{ column_name }}</td>
|
||||
<td class="text-start">{{ column_status }}</td>
|
||||
<td class="text-end">{{ column_action }}</td>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
{% if extensions %}
|
||||
{% for extension in extensions %}
|
||||
<tr>
|
||||
<td class="text-start" colspan="2"><b>{{ extension.name }}</b></td>
|
||||
<td class="text-end">{% if not extension.installed %}
|
||||
<a href="{{ extension.install }}" data-bs-toggle="tooltip" title="{{ button_install }}" class="btn btn-success"><i class="fa-solid fa-plus-circle"></i></a>
|
||||
{% else %}
|
||||
<a href="{{ extension.uninstall }}" data-bs-toggle="tooltip" title="{{ button_uninstall }}" class="btn btn-danger"><i class="fa-solid fa-minus-circle"></i></a>
|
||||
{% endif %}</td>
|
||||
</tr>
|
||||
{% if extension.installed %}
|
||||
{% for store in extension.store %}
|
||||
<tr>
|
||||
<td class="text-start"> - {{ store.name }}</td>
|
||||
<td class="text-start">{{ store.status }}</td>
|
||||
<td class="text-end text-nowrap"><a href="{{ store.edit }}" data-bs-toggle="tooltip" title="{{ button_edit }}" class="btn btn-primary"><i class="fa-solid 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>
|
41
admininistrator/view/template/extension/total.twig
Normal file
41
admininistrator/view/template/extension/total.twig
Normal file
@@ -0,0 +1,41 @@
|
||||
{{ promotion }}
|
||||
<fieldset>
|
||||
<legend>{{ heading_title }}</legend>
|
||||
<div class="table-responsive">
|
||||
<table class="table table-bordered table-hover">
|
||||
<thead>
|
||||
<tr>
|
||||
<td class="text-start">{{ column_name }}</td>
|
||||
<td class="text-start">{{ column_status }}</td>
|
||||
<td class="text-end">{{ column_sort_order }}</td>
|
||||
<td class="text-end">{{ column_action }}</td>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
{% if extensions %}
|
||||
{% for extension in extensions %}
|
||||
<tr>
|
||||
<td class="text-start">{{ extension.name }}</td>
|
||||
<td class="text-start">{{ extension.status }}</td>
|
||||
<td class="text-end">{{ extension.sort_order }}</td>
|
||||
<td class="text-end text-nowrap">{% if extension.installed %}
|
||||
<a href="{{ extension.edit }}" data-bs-toggle="tooltip" title="{{ button_edit }}" class="btn btn-primary"><i class="fa-solid fa-pencil"></i></a>
|
||||
{% else %}
|
||||
<button type="button" class="btn btn-primary" disabled="disabled"><i class="fa-solid fa-pencil"></i></button>
|
||||
{% endif %}
|
||||
{% if not extension.installed %}
|
||||
<a href="{{ extension.install }}" data-bs-toggle="tooltip" title="{{ button_install }}" class="btn btn-success"><i class="fa-solid fa-plus-circle"></i></a>
|
||||
{% else %}
|
||||
<a href="{{ extension.uninstall }}" data-bs-toggle="tooltip" title="{{ button_uninstall }}" class="btn btn-danger"><i class="fa-solid fa-minus-circle"></i></a>
|
||||
{% endif %}</td>
|
||||
</tr>
|
||||
{% endfor %}
|
||||
{% else %}
|
||||
<tr>
|
||||
<td class="text-center" colspan="4">{{ text_no_results }}</td>
|
||||
</tr>
|
||||
{% endif %}
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</fieldset>
|
Reference in New Issue
Block a user