mirror of
https://github.com/grocy/grocy.git
synced 2026-04-07 21:26:16 +02:00
New (header) style was missing on some pages
This commit is contained in:
parent
cd6063ce72
commit
339b9e0dad
|
|
@ -9,22 +9,30 @@
|
||||||
<div class="col">
|
<div class="col">
|
||||||
<h2>@yield('title')</h2>
|
<h2>@yield('title')</h2>
|
||||||
</div>
|
</div>
|
||||||
<hr>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<hr>
|
||||||
<div class="row my-3">
|
<div class="row my-3">
|
||||||
<div class="col-xs-12 col-md-6 col-xl-3">
|
<div class="col-xs-12 col-md-6 col-xl-3">
|
||||||
<label for="search">{{ $__t('Search') }}</label> <i class="fas fa-search"></i>
|
<div class="input-group mb-3">
|
||||||
<input type="text" class="form-control" id="search">
|
<div class="input-group-prepend">
|
||||||
|
<span class="input-group-text"><i class="fas fa-search"></i></span>
|
||||||
|
</div>
|
||||||
|
<input type="text" id="search" class="form-control" placeholder="{{ $__t('Search') }}">
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-xs-12 col-md-6 col-xl-3">
|
<div class="col-xs-12 col-md-6 col-xl-3">
|
||||||
<label for="battery-filter">{{ $__t('Filter by battery') }}</label> <i class="fas fa-filter"></i>
|
<div class="input-group mb-3">
|
||||||
<select class="form-control" id="battery-filter">
|
<div class="input-group-prepend">
|
||||||
<option value="all">{{ $__t('All') }}</option>
|
<span class="input-group-text"><i class="fas fa-filter"></i></span>
|
||||||
|
</div>
|
||||||
|
<select class="form-control" id="battery-filter">
|
||||||
|
<option value="all">{{ $__t('All') }}</option>
|
||||||
@foreach($batteries as $battery)
|
@foreach($batteries as $battery)
|
||||||
<option value="{{ $battery->id }}">{{ $battery->name }}</option>
|
<option value="{{ $battery->id }}">{{ $battery->name }}</option>
|
||||||
@endforeach
|
@endforeach
|
||||||
</select>
|
</select>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -22,9 +22,8 @@
|
||||||
'disallowAllProductWorkflows' => true
|
'disallowAllProductWorkflows' => true
|
||||||
))
|
))
|
||||||
</div>
|
</div>
|
||||||
<hr>
|
|
||||||
</div>
|
</div>
|
||||||
|
<hr>
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col">
|
<div class="col">
|
||||||
<table id="stockentries-table" class="table table-sm table-striped dt-responsive">
|
<table id="stockentries-table" class="table table-sm table-striped dt-responsive">
|
||||||
|
|
|
||||||
|
|
@ -9,22 +9,30 @@
|
||||||
<div class="col">
|
<div class="col">
|
||||||
<h2>@yield('title')</h2>
|
<h2>@yield('title')</h2>
|
||||||
</div>
|
</div>
|
||||||
<hr>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<hr>
|
||||||
<div class="row my-3">
|
<div class="row my-3">
|
||||||
<div class="col-xs-12 col-md-6 col-xl-3">
|
<div class="col-xs-12 col-md-6 col-xl-3">
|
||||||
<label for="search">{{ $__t('Search') }}</label> <i class="fas fa-search"></i>
|
<div class="input-group mb-3">
|
||||||
<input type="text" class="form-control" id="search">
|
<div class="input-group-prepend">
|
||||||
|
<span class="input-group-text"><i class="fas fa-search"></i></span>
|
||||||
|
</div>
|
||||||
|
<input type="text" id="search" class="form-control" placeholder="{{ $__t('Search') }}">
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-xs-12 col-md-6 col-xl-3">
|
<div class="col-xs-12 col-md-6 col-xl-3">
|
||||||
<label for="product-filter">{{ $__t('Filter by product') }}</label> <i class="fas fa-filter"></i>
|
<div class="input-group mb-3">
|
||||||
<select class="form-control" id="product-filter">
|
<div class="input-group-prepend">
|
||||||
<option value="all">{{ $__t('All') }}</option>
|
<span class="input-group-text"><i class="fas fa-filter"></i></span>
|
||||||
@foreach($products as $product)
|
</div>
|
||||||
<option value="{{ $product->id }}">{{ $product->name }}</option>
|
<select class="form-control" id="product-filter">
|
||||||
@endforeach
|
<option value="all">{{ $__t('All') }}</option>
|
||||||
</select>
|
@foreach($products as $product)
|
||||||
|
<option value="{{ $product->id }}">{{ $product->name }}</option>
|
||||||
|
@endforeach
|
||||||
|
</select>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user