mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-11-27 11:20:39 -06:00
New view for #37
This commit is contained in:
parent
335e2083af
commit
ddb60ccdc5
60
app/views/currency/index.blade.php
Normal file
60
app/views/currency/index.blade.php
Normal file
@ -0,0 +1,60 @@
|
||||
@extends('layouts.default')
|
||||
@section('content')
|
||||
{{ Breadcrumbs::renderIfExists(Route::getCurrentRoute()->getName()) }}
|
||||
|
||||
<div class="row">
|
||||
<div class="col-lg-6 col-sm-12 col-md-12">
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-heading">
|
||||
Currencies
|
||||
</div>
|
||||
<div class="panel-body">
|
||||
<p class="text-info">
|
||||
Firefly III supports various currencies which you can set and enable here.
|
||||
</p>
|
||||
<ul>
|
||||
@if(count($currencies) > 0)
|
||||
@foreach($currencies as $currency)
|
||||
<li>
|
||||
<a href="#"><i class="fa fa-fw fa-pencil"></i></a>
|
||||
<a href="#"><i class="fa fa-fw fa-trash"></i></a>
|
||||
{{{$currency->name}}} ({{{$currency->code}}}) ({{{$currency->symbol}}})</li>
|
||||
@endforeach
|
||||
@endif
|
||||
<li><a href="#"><i class="fa fa-fw fa-plus-circle"></i> Add another currency</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-6 col-sm-12 col-md-12">
|
||||
<div class="panel panel-green">
|
||||
<div class="panel-heading">
|
||||
Supported
|
||||
</div>
|
||||
<div class="panel-body">
|
||||
<ul>
|
||||
<li>Set the default currency display;</li>
|
||||
<li>Set the default currency for new transactions;</li>
|
||||
<li>Add, modify and remove supported currencies.</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<div class="panel panel-red">
|
||||
<div class="panel-heading">
|
||||
Not supported yet
|
||||
</div>
|
||||
<div class="panel-body">
|
||||
<ul>
|
||||
<li>Display the actual currency of a transaction<br />
|
||||
<small>See the help-page.</small></li>
|
||||
<li>
|
||||
Update a transaction's currency.
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@stop
|
Loading…
Reference in New Issue
Block a user