Skip to content

Commit

Permalink
Fix history table headers display on mobile
Browse files Browse the repository at this point in the history
  • Loading branch information
Guillaume AGNIERAY authored and trasher committed Dec 4, 2023
1 parent 4fdcaf1 commit 5298b6a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions templates/default/paypal_history.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,11 @@
{{ _T("History entry %id")|replace({'%id': loop.index}) }}
</span>
</td>
<td class="nowrap" data-title="{{ _T("Data") }}">
<td class="nowrap" data-col-label="{{ _T("Data") }}">
{% if log.duplicate is defined %}<img class="img-dup" src="{{ url_for("plugin_res", {"plugin": module_id, "path": "images/warning.png"}) }}" alt="{{ _T("duplicate", "paypal") }}"/>{% endif %}
{{ log.history_date|date(_T("Y-m-d H:i:s")) }}
</td>
<td data-title="{{ _T("Name") }}">
<td data-col-label="{{ _T("Name") }}">
{% if log.request is iterable %}
{% if log.request.custom is defined %}
<a href="{{ url_for("member", {"id": log.request.custom}) }}">
Expand All @@ -56,12 +56,12 @@
{{ _T("No request or unable to read request", "paypal") }}
{% endif %}
</td>
<td data-title="{{ _T("Subject") }}">
<td data-col-label="{{ _T("Subject") }}">
{% if log.request is iterable %}
{{ log.request.item_name }}
{% endif %}
</td>
<td data-title="{{ _T("Amount") }}">
<td data-col-label="{{ _T("Amount") }}">
{% if log.request is iterable%}
{{ log.request.mc_gross }}
{% endif %}
Expand Down

0 comments on commit 5298b6a

Please sign in to comment.