mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-25 18:45:27 -06:00
Fix tag overview.
This commit is contained in:
parent
e3a338db0e
commit
3b39fb93e7
2
public/v1/js/ff/transactions/list.js
vendored
2
public/v1/js/ff/transactions/list.js
vendored
@ -21,7 +21,7 @@
|
|||||||
/** global: edit_selected_txt, edit_bulk_selected_txt, delete_selected_txt, token */
|
/** global: edit_selected_txt, edit_bulk_selected_txt, delete_selected_txt, token */
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
* @deprecated
|
||||||
*/
|
*/
|
||||||
$(document).ready(function () {
|
$(document).ready(function () {
|
||||||
"use strict";
|
"use strict";
|
||||||
|
@ -188,5 +188,5 @@
|
|||||||
</script>
|
</script>
|
||||||
<script src="v1/lib/leaflet/leaflet.js?v={{ FF_VERSION }}"></script>
|
<script src="v1/lib/leaflet/leaflet.js?v={{ FF_VERSION }}"></script>
|
||||||
<script src="v1/js/ff/tags/show.js?v={{ FF_VERSION }}"></script>
|
<script src="v1/js/ff/tags/show.js?v={{ FF_VERSION }}"></script>
|
||||||
<script type="text/javascript" src="v1/js/ff/transactions/list.js?v={{ FF_VERSION }}"></script>
|
<script type="text/javascript" src="v1/js/ff/list/groups.js?v={{ FF_VERSION }}"></script>
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
@ -261,8 +261,7 @@
|
|||||||
<td>
|
<td>
|
||||||
{% for tag in journal.tags %}
|
{% for tag in journal.tags %}
|
||||||
<h4 style="display: inline;"><a class="label label-success" href="{{ route('tags.show', tag) }}">
|
<h4 style="display: inline;"><a class="label label-success" href="{{ route('tags.show', tag) }}">
|
||||||
<i class="fa fa-fw fa-tag"></i>
|
<i class="fa fa-fw fa-tag"></i>{{ tag }}</a>
|
||||||
{{ tag }}</a>
|
|
||||||
</h4>
|
</h4>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</td>
|
</td>
|
||||||
|
@ -857,8 +857,8 @@ Route::group(
|
|||||||
Route::get('', ['uses' => 'TagController@index', 'as' => 'index']);
|
Route::get('', ['uses' => 'TagController@index', 'as' => 'index']);
|
||||||
Route::get('create', ['uses' => 'TagController@create', 'as' => 'create']);
|
Route::get('create', ['uses' => 'TagController@create', 'as' => 'create']);
|
||||||
|
|
||||||
Route::get('show/{tag}/all', ['uses' => 'TagController@showAll', 'as' => 'show.all']);
|
Route::get('show/{tagOrId}/all', ['uses' => 'TagController@showAll', 'as' => 'show.all']);
|
||||||
Route::get('show/{tag}/{start_date?}/{end_date?}', ['uses' => 'TagController@show', 'as' => 'show']);
|
Route::get('show/{tagOrId}/{start_date?}/{end_date?}', ['uses' => 'TagController@show', 'as' => 'show']);
|
||||||
|
|
||||||
Route::get('edit/{tag}', ['uses' => 'TagController@edit', 'as' => 'edit']);
|
Route::get('edit/{tag}', ['uses' => 'TagController@edit', 'as' => 'edit']);
|
||||||
Route::get('delete/{tag}', ['uses' => 'TagController@delete', 'as' => 'delete']);
|
Route::get('delete/{tag}', ['uses' => 'TagController@delete', 'as' => 'delete']);
|
||||||
|
Loading…
Reference in New Issue
Block a user