Skip to content

Commit

Permalink
Reverted some table-responsive in TWIGs
Browse files Browse the repository at this point in the history
  • Loading branch information
TheCartpenter committed Jun 6, 2024
1 parent 69c43e1 commit 12d086f
Show file tree
Hide file tree
Showing 2 changed files with 91 additions and 99 deletions.
136 changes: 65 additions & 71 deletions upload/admin/view/template/extension/module/recurring_info.twig
Original file line number Diff line number Diff line change
Expand Up @@ -19,34 +19,32 @@
<h3 class="panel-title"><i class="fa fa-list"></i> {{ text_recurring_detail }}</h3>
</div>
<div class="panel-body">
<div class="table-responsive">
<table class="table table-bordered">
<tr>
<td>{{ text_order_recurring_id }}</td>
<td>{{ order_recurring_id }}</td>
</tr>
<tr>
<td>{{ text_reference }}</td>
<td>{{ reference }}</td>
</tr>
<tr>
<td>{{ text_recurring_name }}</td>
<td>{{ recurring_name }}</td>
</tr>
<tr>
<td>{{ text_recurring_description }}</td>
<td>{{ recurring_description }}</td>
</tr>
<tr>
<td>{{ text_recurring_status }}</td>
<td>{{ recurring_status }}</td>
</tr>
<tr>
<td>{{ text_payment_method }}</td>
<td>{{ payment_method }}</td>
</tr>
</table>
</div>
<table class="table table-bordered">
<tr>
<td>{{ text_order_recurring_id }}</td>
<td>{{ order_recurring_id }}</td>
</tr>
<tr>
<td>{{ text_reference }}</td>
<td>{{ reference }}</td>
</tr>
<tr>
<td>{{ text_recurring_name }}</td>
<td>{{ recurring_name }}</td>
</tr>
<tr>
<td>{{ text_recurring_description }}</td>
<td>{{ recurring_description }}</td>
</tr>
<tr>
<td>{{ text_recurring_status }}</td>
<td>{{ recurring_status }}</td>
</tr>
<tr>
<td>{{ text_payment_method }}</td>
<td>{{ payment_method }}</td>
</tr>
</table>
</div>
</div>
</div>
Expand All @@ -56,35 +54,33 @@
<h3 class="panel-title"><i class="fa fa-list"></i> {{ text_order_detail }}</h3>
</div>
<div class="panel-body">
<div class="table-responsive">
<table class="table table-bordered">
<tr>
<td>{{ text_order_id }}</td>
<td><a href="{{ order }}">{{ order_id }}</a></td>
</tr>
<tr>
<td>{{ text_customer }}</td>
<td>
{% if customer %}
<a href="{{ customer }}">{{ firstname }} {{ lastname }}</a>
{% else %}
{{ firstname }} {{ lastname }}
{% endif %}</td>
</tr>
<tr>
<td>{{ text_email }}</td>
<td>{{ email }}</td>
</tr>
<tr>
<td>{{ text_order_status }}</td>
<td>{{ order_status }}</td>
</tr>
<tr>
<td>{{ text_date_added }}</td>
<td>{{ date_added }}</td>
</tr>
</table>
</div>
<table class="table table-bordered">
<tr>
<td>{{ text_order_id }}</td>
<td><a href="{{ order }}">{{ order_id }}</a></td>
</tr>
<tr>
<td>{{ text_customer }}</td>
<td>
{% if customer %}
<a href="{{ customer }}">{{ firstname }} {{ lastname }}</a>
{% else %}
{{ firstname }} {{ lastname }}
{% endif %}</td>
</tr>
<tr>
<td>{{ text_email }}</td>
<td>{{ email }}</td>
</tr>
<tr>
<td>{{ text_order_status }}</td>
<td>{{ order_status }}</td>
</tr>
<tr>
<td>{{ text_date_added }}</td>
<td>{{ date_added }}</td>
</tr>
</table>
</div>
</div>
</div>
Expand All @@ -94,22 +90,20 @@
<h3 class="panel-title"><i class="fa fa-list"></i> {{ text_product_detail }}</h3>
</div>
<div class="panel-body">
<div class="table-responsive">
<table class="table table-bordered">
<thead>
<tr>
<td>{{ text_product }}</td>
<td>{{ text_quantity }}</td>
</tr>
</thead>
<tbody>
<table class="table table-bordered">
<thead>
<tr>
<td>{{ product }}</td>
<td>{{ quantity }}</td>
<td>{{ text_product }}</td>
<td>{{ text_quantity }}</td>
</tr>
</tbody>
</table>
</div>
</thead>
<tbody>
<tr>
<td>{{ product }}</td>
<td>{{ quantity }}</td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="panel panel-default">
Expand Down
54 changes: 26 additions & 28 deletions upload/admin/view/template/extension/other/recurring_info.twig
Original file line number Diff line number Diff line change
Expand Up @@ -31,34 +31,32 @@
<div class="tab-pane active" id="tab-general">
<fieldset>
<legend>{{ text_product }}</legend>
<div class="table-responsive">
<table class="table table-bordered">
<tr>
<td>{{ text_order_recurring_id }}</td>
<td>{{ order_recurring_id }}</td>
</tr>
<tr>
<td>{{ text_reference }}</td>
<td>{{ reference }}</td>
</tr>
<tr>
<td>{{ text_recurring_name }}</td>
<td>{{ recurring_name }}</td>
</tr>
<tr>
<td>{{ text_recurring_description }}</td>
<td>{{ recurring_description }}</td>
</tr>
<tr>
<td>{{ text_recurring_status }}</td>
<td>{{ recurring_status }}</td>
</tr>
<tr>
<td>{{ text_payment_method }}</td>
<td>{{ payment_method }}</td>
</tr>
</table>
</div>
<table class="table table-bordered">
<tr>
<td>{{ text_order_recurring_id }}</td>
<td>{{ order_recurring_id }}</td>
</tr>
<tr>
<td>{{ text_reference }}</td>
<td>{{ reference }}</td>
</tr>
<tr>
<td>{{ text_recurring_name }}</td>
<td>{{ recurring_name }}</td>
</tr>
<tr>
<td>{{ text_recurring_description }}</td>
<td>{{ recurring_description }}</td>
</tr>
<tr>
<td>{{ text_recurring_status }}</td>
<td>{{ recurring_status }}</td>
</tr>
<tr>
<td>{{ text_payment_method }}</td>
<td>{{ payment_method }}</td>
</tr>
</table>
</fieldset>
</div>
<div class="tab-pane" id="tab-history">
Expand Down

0 comments on commit 12d086f

Please sign in to comment.