From ddb60ccdc597777ef61d120824f9c662ab5dec41 Mon Sep 17 00:00:00 2001 From: James Cole Date: Tue, 23 Dec 2014 22:27:45 +0100 Subject: [PATCH] New view for #37 --- app/views/currency/index.blade.php | 60 ++++++++++++++++++++++++++++++ 1 file changed, 60 insertions(+) create mode 100644 app/views/currency/index.blade.php diff --git a/app/views/currency/index.blade.php b/app/views/currency/index.blade.php new file mode 100644 index 0000000000..8f5bc6a0bc --- /dev/null +++ b/app/views/currency/index.blade.php @@ -0,0 +1,60 @@ +@extends('layouts.default') +@section('content') + {{ Breadcrumbs::renderIfExists(Route::getCurrentRoute()->getName()) }} + +
+
+
+
+ Currencies +
+
+

+ Firefly III supports various currencies which you can set and enable here. +

+
    + @if(count($currencies) > 0) + @foreach($currencies as $currency) +
  • + + + {{{$currency->name}}} ({{{$currency->code}}}) ({{{$currency->symbol}}})
  • + @endforeach + @endif +
  • Add another currency
  • +
+
+
+
+
+
+
+ Supported +
+
+
    +
  • Set the default currency display;
  • +
  • Set the default currency for new transactions;
  • +
  • Add, modify and remove supported currencies.
  • +
+
+
+
+
+ Not supported yet +
+
+
    +
  • Display the actual currency of a transaction
    + See the help-page.
  • +
  • + Update a transaction's currency. +
  • + +
+ +
+
+
+
+@stop \ No newline at end of file