From f68c1aff267864cb2d0c1f1fd37db484ed81f21c Mon Sep 17 00:00:00 2001 From: Sander Dorigo Date: Sat, 11 Oct 2014 18:52:24 +0200 Subject: [PATCH] Cleaned up the show view. --- app/views/recurring/show.blade.php | 103 +++++++++++++---------------- 1 file changed, 46 insertions(+), 57 deletions(-) diff --git a/app/views/recurring/show.blade.php b/app/views/recurring/show.blade.php index 48f68e5c65..8cfc398c74 100644 --- a/app/views/recurring/show.blade.php +++ b/app/views/recurring/show.blade.php @@ -1,68 +1,57 @@ @extends('layouts.default') @section('content') -
-
-

Use recurring transactions to track repeated withdrawals

-

-

-

-
-
-
+
+
+ {{{$recurring->name}}} - - - - - - - - - - - - - - - - - - - - - - - + @if($recurring->active) + + @else + + @endif - - -
Matches on: - @foreach(explode(' ',$recurring->match) as $word) - {{{$word}}} - @endforeach -
Between {{mf($recurring->amount_min)}} – {{mf($recurring->amount_max)}}
Repeats{{ucfirst($recurring->repeat_freq)}}
Next reminder{{$recurring->next()->format('d-m-Y')}}
Will be auto-matched - @if($recurring->automatch) - - @else - - @endif -
Is active - @if($recurring->active) - - @else - - @endif -
+ @if($recurring->automatch) + + @else + + @endif - + +
+
+ + +
+
- - +
+
+ + + + + + + + + +
+ Matching on + @foreach(explode(' ',$recurring->match) as $word) + {{{$word}}} + @endforeach + between {{mf($recurring->amount_min)}} and {{mf($recurring->amount_max)}}. + Repeats {{$recurring->repeat_freq}}.
Next reminderTODO TODO
+
+
@stop \ No newline at end of file