mirror of
https://github.com/grocy/grocy.git
synced 2025-04-28 17:23:56 +00:00
Use managed fonts Include userentities dynamically in grocy.openapi.json for /userfields/{entity}/{objectId} endpoints (closes #1218) Fixed userfieldsform load / save (for products and recipes) handling (fixes #1302) Fixed PUT/DELETE /objects/{entity}/{objectId} when the given object id was invalid (fixes #1396) Allow arrays in HTMLPurifier (fixes #1407)
42 lines
938 B
PHP
42 lines
938 B
PHP
<html>
|
|
|
|
<head>
|
|
<title>{{ $product->name }}</title>
|
|
<link href="{{ $U('/node_modules/@fontsource/noto-sans/latin.css?v=', true) }}{{ $version }}"
|
|
rel="stylesheet">
|
|
<style>
|
|
body {
|
|
font-family: 'Noto Sans', sans-serif;
|
|
}
|
|
|
|
img {
|
|
float: left;
|
|
margin-right: .5rem;
|
|
max-height: 25px;
|
|
width: auto;
|
|
margin-top: 2px;
|
|
}
|
|
|
|
.productname {
|
|
font-size: 20px;
|
|
display: inline-block;
|
|
font-weight: bold;
|
|
}
|
|
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<p>
|
|
<!-- Size gets determined by CSS, so printing works better (more pixels = sharper printed image).
|
|
Unfortunately, this also means the code is blurred on screen. -->
|
|
<img src="{{ $U('/stockentry/'. $stockEntry->id . '/grocycode?size=100') }}">
|
|
<span class="productname">{{ $product->name }}</span><br>
|
|
@if (GROCY_FEATURE_FLAG_STOCK_BEST_BEFORE_DATE_TRACKING)
|
|
<span>{{ $__t('DD') }}: {{ $stockEntry->best_before_date }}</span>
|
|
@endif
|
|
</p>
|
|
</body>
|
|
|
|
</html>
|