2020-02-10 11:04:57 -06:00
|
|
|
@extends('layout.default')
|
|
|
|
|
|
|
|
@section('title', $__t('Recipes settings'))
|
|
|
|
|
|
|
|
@section('viewJsName', 'recipessettings')
|
|
|
|
|
|
|
|
@section('content')
|
2020-04-19 08:51:02 -04:00
|
|
|
<div class="row">
|
|
|
|
<div class="col">
|
|
|
|
<h2 class="title">@yield('title')</h2>
|
|
|
|
</div>
|
|
|
|
</div>
|
2020-10-31 18:37:10 +01:00
|
|
|
|
2020-11-08 15:09:10 +01:00
|
|
|
<hr class="my-2">
|
2020-10-31 18:37:10 +01:00
|
|
|
|
2020-02-10 11:04:57 -06:00
|
|
|
<div class="row">
|
|
|
|
<div class="col-lg-6 col-xs-12">
|
2020-02-10 18:24:15 +01:00
|
|
|
<h4 class="mt-2">{{ $__t('Recipe card') }}</h4>
|
2020-02-10 11:04:57 -06:00
|
|
|
<div class="form-group">
|
2020-11-12 21:35:10 +01:00
|
|
|
<div class="custom-control custom-checkbox">
|
|
|
|
<input type="checkbox"
|
|
|
|
class="form-check-input custom-control-input user-setting-control"
|
|
|
|
id="recipe_ingredients_group_by_product_group"
|
|
|
|
data-setting-key="recipe_ingredients_group_by_product_group">
|
|
|
|
<label class="form-check-label custom-control-label"
|
|
|
|
for="recipe_ingredients_group_by_product_group">
|
|
|
|
{{ $__t('Group ingredients by their product group') }}
|
2020-02-10 11:04:57 -06:00
|
|
|
</label>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2020-08-31 20:32:50 +02:00
|
|
|
<a href="{{ $U('/recipes') }}"
|
|
|
|
class="btn btn-success">{{ $__t('OK') }}</a>
|
2020-02-10 11:04:57 -06:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
@stop
|