Start updating view.

This commit is contained in:
James Cole
2017-12-30 12:54:19 +01:00
parent 08f28d48af
commit 717e101b80
2 changed files with 42 additions and 4 deletions

View File

@@ -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 %}