mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-11-27 11:20:39 -06:00
73 lines
2.2 KiB
PHP
73 lines
2.2 KiB
PHP
<table class="table table-bordered table-striped">
|
|
<tr>
|
|
<th> </th>
|
|
<th>Name</th>
|
|
<th>Matches on</th>
|
|
<th>Matching amount</th>
|
|
<th>Last seen match</th>
|
|
<th>Next expected match</th>
|
|
<th>Is active</th>
|
|
<th>Will be automatched</th>
|
|
<th>Repeats every</th>
|
|
</tr>
|
|
@foreach($recurring as $entry)
|
|
<tr>
|
|
<td>
|
|
<div class="btn-group btn-group-xs">
|
|
<a href="{{route('recurring.edit',$entry->id)}}" class="btn btn-default btn-xs"><span class="glyphicon glyphicon-pencil"></span></a>
|
|
<a href="{{route('recurring.delete',$entry->id)}}" class="btn btn-danger btn-xs"><span class="glyphicon glyphicon-trash"></span></a>
|
|
</div>
|
|
</td>
|
|
<td>
|
|
<a href="{{route('recurring.show',$entry->id)}}" title="{{{$entry->name}}}">{{{$entry->name}}}</a>
|
|
</td>
|
|
<td>
|
|
@foreach(explode(',',$entry->match) as $match)
|
|
<span class="label label-info">{{{$match}}}</span>
|
|
@endforeach
|
|
</td>
|
|
<td>
|
|
{{mf($entry->amount_min)}}
|
|
—
|
|
{{mf($entry->amount_max)}}
|
|
</td>
|
|
<td>
|
|
<?php $lastMatch = $entry->lastFoundMatch();?>
|
|
@if($lastMatch)
|
|
{{$lastMatch->format('j F Y')}}
|
|
@else
|
|
<em>Unknown</em>
|
|
@endif
|
|
</td>
|
|
<td>
|
|
<?php $nextExpectedMatch = $entry->nextExpectedMatch();?>
|
|
@if($nextExpectedMatch)
|
|
{{$nextExpectedMatch->format('j F Y')}}
|
|
@else
|
|
<em>Unknown</em>
|
|
@endif
|
|
</td>
|
|
<td>
|
|
@if($entry->active)
|
|
<i class="fa fa-fw fa-check"></i>
|
|
@else
|
|
<i class="fa fa-fw fa-ban"></i>
|
|
@endif
|
|
</td>
|
|
<td>
|
|
@if($entry->automatch)
|
|
<i class="fa fa-fw fa-check"></i>
|
|
@else
|
|
<i class="fa fa-fw fa-ban"></i>
|
|
@endif
|
|
</td>
|
|
<td>
|
|
{{{$entry->repeat_freq}}}
|
|
@if($entry->skip > 0)
|
|
skips over {{$entry->skip}}
|
|
@endif
|
|
</td>
|
|
</tr>
|
|
|
|
@endforeach
|
|
</table>
|