mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-12-12 18:02:34 +00:00
Show tag icons.
This commit is contained in:
@@ -42,14 +42,26 @@
|
|||||||
</a>
|
</a>
|
||||||
</p>
|
</p>
|
||||||
<p>
|
<p>
|
||||||
<a href="{{route('tags.create')}}" title="New tag" class="btn btn-info"><i class="fa fa-fw fa-tag"></i> Create new tag</a>
|
<a href="{{route('tags.create')}}" title="New tag" class="btn btn-info"><i class="fa fa-fw fa-plus"></i> Create new tag</a>
|
||||||
</p>
|
</p>
|
||||||
<p>
|
<p>
|
||||||
@if(count($tags) == 0)
|
@if(count($tags) == 0)
|
||||||
<em>No tags</em>
|
<em>No tags</em>
|
||||||
@else
|
@else
|
||||||
@foreach($tags as $tag)
|
@foreach($tags as $tag)
|
||||||
<h4 style="display: inline;"><a class="label label-success" href="{{route('tags.show',$tag)}}">{{$tag->tag}}</a></h4>
|
|
||||||
|
<h4 style="display: inline;"><a class="label label-success" href="{{route('tags.show',$tag)}}">
|
||||||
|
@if($tag->tagMode == 'nothing')
|
||||||
|
<i class="fa fa-fw fa-tag"></i>
|
||||||
|
@endif
|
||||||
|
@if($tag->tagMode == 'balancingAct')
|
||||||
|
<i class="fa fa-fw fa-refresh"></i>
|
||||||
|
@endif
|
||||||
|
@if($tag->tagMode == 'advancePayment')
|
||||||
|
<i class="fa fa-fw fa-sort-numeric-desc"></i>
|
||||||
|
@endif
|
||||||
|
{{$tag->tag}}</a>
|
||||||
|
</h4>
|
||||||
@endforeach
|
@endforeach
|
||||||
@endif
|
@endif
|
||||||
</p>
|
</p>
|
||||||
|
|||||||
Reference in New Issue
Block a user