mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-11-27 19:31:01 -06:00
155 lines
5.2 KiB
PHP
155 lines
5.2 KiB
PHP
@extends('layouts.default')
|
|
@section('content')
|
|
<div class="row">
|
|
<div class="col-lg-12 col-md-12 col-sm-12">
|
|
<h1>Firefly
|
|
@if($count > 0)
|
|
<small>What's playing?</small>
|
|
@endif
|
|
</h1>
|
|
</div>
|
|
</div>
|
|
@if($count > 0)
|
|
@include('partials.date_nav')
|
|
@endif
|
|
@if($count == 0)
|
|
<div class="row">
|
|
<div class="col-lg-12 col-md-12 col-sm-12">
|
|
<p class="lead">Welcome to Firefly III.</p>
|
|
|
|
<p>
|
|
To get get started, choose below:
|
|
</p>
|
|
</div>
|
|
</div>
|
|
<div class="row">
|
|
<div class="col-lg-6 col-md-6 col-sm-12">
|
|
<h2><a href="{{route('migrate.index')}}">Migrate from Firefly II</a></h2>
|
|
|
|
<p>
|
|
Use this option if you have a JSON file from your current Firefly II installation.
|
|
</p>
|
|
</div>
|
|
<div class="col-lg-6 col-md-6 col-sm-12">
|
|
<h2><a href="{{route('accounts.create')}}">Start from scratch</a></h2>
|
|
|
|
<p>
|
|
Use this option if you are new to Firefly (III).
|
|
</p>
|
|
</div>
|
|
@else
|
|
|
|
|
|
<!-- ACCOUNTS -->
|
|
<div class="row">
|
|
<div class="col-lg-12 col-md-12 col-sm-12">
|
|
<div id="chart"></div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- TRANSACTIONS -->
|
|
@if(count($transactions) > 0)
|
|
@foreach($transactions as $set)
|
|
<div class="row">
|
|
<?php $split = 12 / count($set); ?>
|
|
@foreach($set as $data)
|
|
<div class="col-lg-{{$split}} col-md-{{$split}}">
|
|
<h4>
|
|
<a href="{{route('accounts.show',$data[1]->id)}}">{{{$data[1]->name}}}</a>
|
|
</h4>
|
|
|
|
@include('transactions.journals-small',['transactions' => $data[0],'account' => $data[1]])
|
|
<div class="btn-group btn-group-xs">
|
|
<a class="btn btn-default" href="{{route('transactions.create','withdrawal')}}?account_id={{$data[1]->id}}"><span class="glyphicon glyphicon-arrow-left" title="Withdrawal"></span> Add withdrawal</a>
|
|
<a class="btn btn-default" href="{{route('transactions.create','deposit')}}?account_id={{$data[1]->id}}"><span class="glyphicon glyphicon-arrow-right" title="Deposit"></span> Add deposit</a>
|
|
<a class="btn btn-default" href="{{route('transactions.create','transfer')}}?account_from_id={{$data[1]->id}}"><span class="glyphicon glyphicon-resize-full" title="Transfer"></span> Add transfer</a>
|
|
</div>
|
|
|
|
</div>
|
|
@endforeach
|
|
</div>
|
|
@endforeach
|
|
@endif
|
|
|
|
@if(count($reminders) > 0)
|
|
<div class="row">
|
|
<div class="col-lg-12 col-md-12 col-sm-12">
|
|
<h4>Recurring transactions</h4>
|
|
<p class="text-info">These transactions are set to be expected between
|
|
{{Session::get('start')->format('j F Y')}} and {{Session::get('end')->format('j F Y')}}.</p>
|
|
<table class="table">
|
|
<tr>
|
|
<th>Name</th>
|
|
<th>Tags</th>
|
|
<th colspan="2">Amount</th>
|
|
<th>Repeats</th>
|
|
</tr>
|
|
<?php $max =0;$min = 0;?>
|
|
@foreach($reminders as $reminder)
|
|
<?php
|
|
$max += $reminder->recurringtransaction->amount_max;
|
|
$min += $reminder->recurringtransaction->amount_min;
|
|
?>
|
|
<tr>
|
|
<td>
|
|
<a href="{{route('recurring.show',$reminder->recurringtransaction->id)}}">
|
|
{{{$reminder->recurringtransaction->name}}}
|
|
</a>
|
|
</td>
|
|
<td>
|
|
@foreach(explode(' ',$reminder->recurringtransaction->match) as $word)
|
|
<span class="label label-info">{{{$word}}}</span>
|
|
@endforeach
|
|
</td>
|
|
|
|
<td>
|
|
{{mf($reminder->recurringtransaction->amount_min)}}
|
|
</td>
|
|
<td>
|
|
{{mf($reminder->recurringtransaction->amount_max)}}
|
|
</td>
|
|
<td>
|
|
{{$reminder->recurringtransaction->repeat_freq}}
|
|
</td>
|
|
<td>
|
|
<div class="btn-group btn-group-xs">
|
|
<a href="#" class="btn btn-default">postpone</a>
|
|
<a href="#" class="btn btn-default">dismiss</a>
|
|
<a href="#" class="btn btn-default">done!</a>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
@endforeach
|
|
<tr>
|
|
<td colspan="2">Sum</td>
|
|
<td>{{mf($max)}}</td>
|
|
<td colspan="3">{{mf($min)}}</td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
@endif
|
|
|
|
|
|
<div class="row">
|
|
<div class="col-lg-12 col-md-12 col-sm-12">
|
|
<div id="budgets"></div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="row">
|
|
<div class="col-lg-12 col-md-12 col-sm-12">
|
|
<div id="categories"></div>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
@endif
|
|
|
|
@stop
|
|
@section('scripts')
|
|
<?php echo javascript_include_tag('index'); ?>
|
|
@stop
|
|
@section('styles')
|
|
<?php echo stylesheet_link_tag('index'); ?>
|
|
@stop
|