mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-01-07 06:33:57 -06:00
19 lines
750 B
PHP
19 lines
750 B
PHP
|
<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">×</span><span class="sr-only">Close</span></button>
|
||
|
<h4 class="modal-title" id="myModalLabel">Relate "{{{$journal->description}}}" to other transactions</h4>
|
||
|
</div>
|
||
|
<div class="modal-body">
|
||
|
|
||
|
<h5>Search results</h5>
|
||
|
<h5>Related transactions</h5>
|
||
|
@include('list.journals-tiny',['transactions' => $members])
|
||
|
|
||
|
</div>
|
||
|
<div class="modal-footer">
|
||
|
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|