Fix a view, fix tag format.

This commit is contained in:
James Cole
2015-05-17 15:24:30 +02:00
parent 0fcb32a66f
commit 7ce57e6ccb
2 changed files with 7 additions and 2 deletions

View File

@@ -80,12 +80,17 @@ class Journal extends Twig_Extension
}
foreach ($journal->tags as $tag) {
if ($tag->tagMode == 'balancingAct') {
// return tag formatted for a "balancing act".
// return tag formatted for a "balancing act", even if other
// tags are present.
$amount = App::make('amount')->formatJournal($journal, false);
return '<a href="' . route('tags.show', $tag->id) . '" class="label label-success" title="' . $amount
. '"><i class="fa fa-fw fa-refresh"></i> ' . $tag->tag . '</span>';
}
if($tag->tagMode == 'nothing') {
// return the amount:
return App::make('amount')->formatJournal($journal);
}
}