mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2026-01-11 00:16:54 +00:00
Start updating view.
This commit is contained in:
@@ -56,14 +56,48 @@
|
||||
<a href="{{ route('budgets.show', [bud.id]) }}">{{ bud.name }}</a>
|
||||
{% endif %}
|
||||
</td>
|
||||
<td></td>
|
||||
<td></td>
|
||||
<td>
|
||||
{% for tag in journal.tags %}
|
||||
<a class="label label-success" href="{{ route('tags.show', [tag.id]) }}">
|
||||
<i class="fa fa-fw fa-tag"></i> {{ tag.tag }}</a>
|
||||
{% endfor %}
|
||||
</td>
|
||||
</tr>
|
||||
{% endfor %}
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
<p>
|
||||
{{ 'bulk_set_new_values'|_ }}
|
||||
</p>
|
||||
<div class="row">
|
||||
<div class="col-lg-8 col-md-12 col-sm-12 col-xs-12">
|
||||
<table class="table table-striped table-condensed">
|
||||
<tr>
|
||||
<th style="width:25%;">{{ trans('list.category') }}</th>
|
||||
<td>
|
||||
<input class="form-control" placeholder="" name="category" type="text" value="">
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>{{ trans('list.budget') }}</th>
|
||||
<td>
|
||||
<select class="form-control" name="budget_id">
|
||||
<option value="0">(none)</option>
|
||||
</select>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>{{ trans('list.tags') }}</th>
|
||||
<td>
|
||||
<input class="form-control" placeholder="" name="tags" type="text" value="">
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
<!--
|
||||
<table class="table table-striped table-condensed">
|
||||
<tr>
|
||||
<th class="col-lg-2 col-md-2 col-sm-2">{{ trans('list.category') }}</th>
|
||||
@@ -72,14 +106,15 @@
|
||||
<tr>
|
||||
{# category #}
|
||||
<td>
|
||||
<input class="form-control input-sm" placeholder="" name="category" type="text" value="">
|
||||
|
||||
</td>
|
||||
{# tags #}
|
||||
<td>
|
||||
<input class="form-control input-sm" placeholder="" name="tags" type="text" value="">
|
||||
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
-->
|
||||
</div>
|
||||
<div class="box-footer">
|
||||
{% if journals.count > 0 %}
|
||||
|
||||
Reference in New Issue
Block a user