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}}}
-
-
- 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->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 reminder |
+ TODO TODO |
+
+
+
+
@stop
\ No newline at end of file