mirror of
https://github.com/grocy/grocy.git
synced 2025-04-29 01:32:38 +00:00
* UI changes * New (header) style was missing on some pages * Added/changed new localization strings * Unify page titles / apply .title class everywhere * Reduce spacing below page title Co-authored-by: Bernd Bestel <bernd@berrnd.de>
47 lines
1.2 KiB
PHP
47 lines
1.2 KiB
PHP
@extends('layout.default')
|
|
|
|
@section('title', $__t('Quantity unit plural form testing'))
|
|
|
|
@section('viewJsName', 'quantityunitpluraltesting')
|
|
|
|
@push('pageStyles')
|
|
<link href="{{ $U('/node_modules/animate.css/animate.min.css?v=', true) }}{{ $version }}" rel="stylesheet">
|
|
@endpush
|
|
|
|
@section('content')
|
|
<div class="row">
|
|
<div class="col">
|
|
<h2 class="title">@yield('title')</h2>
|
|
<hr>
|
|
</div>
|
|
</div>
|
|
<div class="row">
|
|
<div class="col-lg-6 col-xs-12">
|
|
<form id="quantityunitpluraltesting-form" novalidate>
|
|
|
|
<div class="form-group">
|
|
<label for="qu_id">{{ $__t('Quantity unit') }}</label>
|
|
<select class="form-control" id="qu_id" name="qu_id">
|
|
<option></option>
|
|
@foreach($quantityUnits as $quantityUnit)
|
|
<option value="{{ $quantityUnit->id }}" data-singular-form="{{ $quantityUnit->name }}" data-plural-form="{{ $quantityUnit->name_plural }}">{{ $quantityUnit->name }}</option>
|
|
@endforeach
|
|
</select>
|
|
</div>
|
|
|
|
@include('components.numberpicker', array(
|
|
'id' => 'amount',
|
|
'label' => 'Amount',
|
|
'min' => 0,
|
|
'step' => 1,
|
|
'isRequired' => false,
|
|
'value' => 1
|
|
))
|
|
|
|
</form>
|
|
|
|
<h2><strong>{{ $__t('Result') }}:</strong> <span id="result"></span></h2>
|
|
</div>
|
|
</div>
|
|
@stop
|