diff --git a/src/Views/Settings/Admin.cshtml b/src/Views/Settings/Admin.cshtml index eef077f..e5b7e62 100644 --- a/src/Views/Settings/Admin.cshtml +++ b/src/Views/Settings/Admin.cshtml @@ -10,6 +10,7 @@ @inject LdapService ldap @{ ViewData["Title"] = T["Users"]; + List supportedBarcodeTypes = ["code128c", "ean13", "ean8", "upc", "itf14", "itf"]; } @@ -27,13 +28,24 @@ @T["Barcode type"] + + + + + + - CODE128C - EAN13 - EAN8 - UPC - ITF14 - ITF + @foreach (string barcodeType in supportedBarcodeTypes) + { + @barcodeType.ToUpper() + } @@ -348,4 +360,55 @@ border-bottom: none !important; border-radius: 0.5rem 0.5rem 0 0 !important; } - \ No newline at end of file + + + + + + + + @T["Barcode preview"] + + + + + + + + + + + + \ No newline at end of file