mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-12 15:35:15 +00:00
Fix issues with relative urls
This commit is contained in:
@@ -18,7 +18,7 @@
|
||||
<button class="btn btn-box-tool dropdown-toggle" data-toggle="dropdown"><span class="fa fa-ellipsis-v"></span></button>
|
||||
<ul class="dropdown-menu" role="menu">
|
||||
<li><a href="{{ route('accounts.create', objectType) }}"><span
|
||||
class="fa fa-plus fa-fw"></span> {{ ('make_new_' ~ objectType ~ '_account')|_ }}
|
||||
class="fa fa-plus fa-fw"></span> {{ ('make_new_' ~ objectType ~ '_account')|_ }}
|
||||
</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
@@ -37,7 +37,7 @@
|
||||
<div class="box-footer">
|
||||
<p>
|
||||
<a href="{{ route('accounts.create', objectType) }}" class="btn btn-success"><span
|
||||
class="fa fa-plus fa-fw"></span> {{ ('make_new_' ~ objectType ~ '_account')|_ }}</a>
|
||||
class="fa fa-plus fa-fw"></span> {{ ('make_new_' ~ objectType ~ '_account')|_ }}</a>
|
||||
</p>
|
||||
{% if inactiveCount > 0 %}
|
||||
<p><small>
|
||||
|
@@ -18,12 +18,12 @@
|
||||
<div class="box-tools pull-right">
|
||||
<div class="btn-group">
|
||||
<button class="btn btn-box-tool dropdown-toggle" data-toggle="dropdown"><span
|
||||
class="fa fa-ellipsis-v"></span></button>
|
||||
class="fa fa-ellipsis-v"></span></button>
|
||||
<ul class="dropdown-menu" role="menu">
|
||||
<li><a href="{{ route('accounts.edit', account.id) }}"><span
|
||||
class="fa fa-pencil fa-fw"></span> {{ 'edit'|_ }}</a></li>
|
||||
class="fa fa-pencil fa-fw"></span> {{ 'edit'|_ }}</a></li>
|
||||
<li><a href="{{ route('accounts.delete', account.id) }}"><span
|
||||
class="fa fa-trash fa-fw"></span> {{ 'delete'|_ }}</a></li>
|
||||
class="fa fa-trash fa-fw"></span> {{ 'delete'|_ }}</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
Reference in New Issue
Block a user