Files
firefly-iii/resources/views/related/relate.blade.php

30 lines
1.4 KiB
PHP
Raw Normal View History

2015-02-25 21:19:06 +01:00
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">&times;</span><span class="sr-only">Close</span></button>
<h4 class="modal-title">Relate "{{{$journal->description}}}" to other transactions</h4>
</div>
<div class="modal-body">
2015-03-04 09:42:47 +01:00
<p>
Use this form to relate this transaction to other transactions. An often used relation is any unexpected expenses and the balancing transfer
from a savings account.
</p>
2015-02-25 21:19:06 +01:00
<form class="form-inline" role="form" id="searchRelated">
<div class="form-group">
<input type="text" style="width:400px;" class="form-control" name="related" id="relatedSearchValue" placeholder="Search for related transactions">
</div>
<button type="submit" class="btn btn-default">Search</button>
</form>
2015-03-04 09:42:47 +01:00
<h5 id="relatedSearchResultsTitle" style="display:none;">Search results</h5>
<div id="relatedSearchResults">
2015-02-25 21:19:06 +01:00
</div>
<h5>(Already) related transactions</h5>
2015-03-04 16:04:17 +01:00
<div id="alreadyRelated">
2015-02-25 21:19:06 +01:00
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
</div>
</div>
</div>