mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-25 18:45:27 -06:00
hide button and checkbox [skip ci]
This commit is contained in:
parent
53b77e6bf9
commit
87273e232a
@ -29,8 +29,8 @@ TODO: hide and show columns
|
|||||||
{% if showBudget %}
|
{% if showBudget %}
|
||||||
<th class="hidden-xs">{{ trans('list.budget') }}</th>
|
<th class="hidden-xs">{{ trans('list.budget') }}</th>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
<th> </th>
|
<th class="hidden-xs"> </th><!-- actions -->
|
||||||
<th> </th>
|
<th class="hidden-xs"> </th><!-- checkbox -->
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
@ -61,7 +61,7 @@ TODO: hide and show columns
|
|||||||
{% else %}
|
{% else %}
|
||||||
<td style="border-top:1px #aaa solid;" colspan="2"> </td>
|
<td style="border-top:1px #aaa solid;" colspan="2"> </td>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
<td style="border-top:1px #aaa solid;">
|
<td style="border-top:1px #aaa solid;" class="hidden-xs">
|
||||||
<div class="btn-group btn-group-xs pull-right">
|
<div class="btn-group btn-group-xs pull-right">
|
||||||
<button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
<button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
{{ 'actions'|_ }} <span class="caret"></span></button>
|
{{ 'actions'|_ }} <span class="caret"></span></button>
|
||||||
@ -72,7 +72,7 @@ TODO: hide and show columns
|
|||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
</td>
|
</td>
|
||||||
<td style="border-top:1px #aaa solid;"> </td>
|
<td style="border-top:1px #aaa solid;" class="hidden-xs"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% for index, transaction in group.transactions %}
|
{% for index, transaction in group.transactions %}
|
||||||
@ -178,7 +178,7 @@ TODO: hide and show columns
|
|||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
{% if group.count == 1 %}
|
{% if group.count == 1 %}
|
||||||
<td style=" {{ style|raw }};">
|
<td style=" {{ style|raw }};" class="hidden-xs">
|
||||||
<div class="btn-group btn-group-xs pull-right">
|
<div class="btn-group btn-group-xs pull-right">
|
||||||
<button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
<button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
{{ 'actions'|_ }} <span class="caret"></span></button>
|
{{ 'actions'|_ }} <span class="caret"></span></button>
|
||||||
@ -194,11 +194,11 @@ TODO: hide and show columns
|
|||||||
|
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% if group.count != 1 %}
|
{% if group.count != 1 %}
|
||||||
<td style=" {{ style|raw }};">
|
<td style=" {{ style|raw }};" class="hidden-xs">
|
||||||
|
|
||||||
</td>
|
</td>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
<td style="{{ style|raw }}">
|
<td style="{{ style|raw }}" class="hidden-xs">
|
||||||
<div class="pull-right">
|
<div class="pull-right">
|
||||||
<input id="list_{{ transaction.transaction_journal_id }}" value="{{ transaction.transaction_journal_id }}"
|
<input id="list_{{ transaction.transaction_journal_id }}" value="{{ transaction.transaction_journal_id }}"
|
||||||
name="journals[{{ transaction.transaction_journal_id }}]"
|
name="journals[{{ transaction.transaction_journal_id }}]"
|
||||||
|
Loading…
Reference in New Issue
Block a user