templates/default/detail.html.twig line 1

Open in your IDE?
  1. {% extends "layout.html.twig" %}
  2. {% block content %}
  3. <style>
  4.   /* ── Header alignment (same as listing page) ──────────────────────────── */
  5.   header .wrapper>section>div.right ul li.remabutton {
  6.     padding-left: 20px !important;
  7.     padding-right: 20px !important;
  8.     padding-top: 0 !important;
  9.     height: 58px !important;
  10.     vertical-align: middle !important;
  11.     display: inline-flex !important;
  12.     align-items: center !important;
  13.   }
  14.   header .wrapper>section>div.right ul li.remabutton>a {
  15.     display: inline-flex !important;
  16.     align-items: center !important;
  17.     justify-content: center !important;
  18.     gap: 8px !important;
  19.     min-height: 44px !important;
  20.     line-height: 1 !important;
  21.     white-space: nowrap !important;
  22.   }
  23.   header .wrapper>section>div.right ul li.remabutton>a img {
  24.     position: relative !important;
  25.     top: 0 !important;
  26.     width: 18px !important;
  27.     height: 18px !important;
  28.     margin: 0 !important;
  29.     flex-shrink: 0 !important;
  30.   }
  31.   /* ── Content-top: border + compact height ────────────────────────────── */
  32.   .content .wrapper>section>article .content-top {
  33.     margin-bottom: 0 !important;
  34.   }
  35.   .content .wrapper>section>article .content-top>section {
  36.     border: 1px solid #ddd;
  37.     border-bottom: 2px solid #ddd;
  38.     border-radius: 2px;
  39.     margin-bottom: 20px;
  40.   }
  41.   .content .wrapper>section>article .content-top>section>div.left {
  42.     background: #fff !important;
  43.     padding: 20px 28px !important;
  44.   }
  45.   .content .wrapper>section>article .content-top>section>div.right {
  46.     background: #f3f4f5 !important;
  47.     border-left: none !important;
  48.   }
  49.   /* ── Shops row: flags + delete on same line ──────────────────────────── */
  50.   .pdp-shops-row {
  51.     display: flex;
  52.     align-items: center;
  53.     justify-content: space-between;
  54.     margin-top: 6px;
  55.   }
  56.   .pdp-shops-title {
  57.     margin-top: 12px;
  58.     margin-bottom: 2px;
  59.   }
  60.   .pdp-shops-title strong {
  61.     font-family: 'pill gothic 600mg rg';
  62.     font-weight: bold;
  63.     color: #222;
  64.     font-size: 15px;
  65.   }
  66.   .pdp-flags-list {
  67.     display: flex;
  68.     align-items: center;
  69.     flex-wrap: wrap;
  70.     gap: 8px;
  71.   }
  72.   .pdp-flags-list > div {
  73.     opacity: 0.5;
  74.     cursor: pointer;
  75.     transition: all 0.4s;
  76.   }
  77.   .pdp-flags-list > div.active {
  78.     opacity: 1;
  79.   }
  80.   .pdp-flags-list > div:hover {
  81.     opacity: 1;
  82.   }
  83.   .pdp-flags-list > div > section {
  84.     display: inline-block;
  85.   }
  86.   .pdp-flags-list > div > section > div {
  87.     padding: 5px 10px;
  88.     background: #f3f4f5;
  89.     border-radius: 2px;
  90.     display: inline-block;
  91.   }
  92.   .pdp-flags-list > div > section > div span {
  93.     font-family: 'pill gothic 600mg rg';
  94.     font-weight: bold;
  95.     color: #888;
  96.     font-size: 13px;
  97.     text-transform: uppercase;
  98.     display: inline-flex;
  99.     align-items: center;
  100.     gap: 4px;
  101.   }
  102.   .pdp-flags-list > div > section > div span img {
  103.     position: relative;
  104.     top: 0;
  105.   }
  106.   .pdp-delete-label {
  107.     font-family: 'pill gothic 600mg rg';
  108.     font-weight: bold;
  109.     color: #888;
  110.     font-size: 13px;
  111.     text-transform: uppercase;
  112.     cursor: pointer;
  113.     display: inline-flex;
  114.     align-items: center;
  115.     gap: 6px;
  116.     text-decoration: none;
  117.     transition: color 0.3s;
  118.     white-space: nowrap;
  119.     flex-shrink: 0;
  120.   }
  121.   .pdp-delete-label:hover { color: #e40017; }
  122.   /* ── Back button (Zurück) ─────────────────────────────────────────────── */
  123.   .remabutton.alt {
  124.     height: 48px !important;
  125.     padding-top: 0 !important;
  126.     padding-left: 20px !important;
  127.     padding-right: 20px !important;
  128.   }
  129.   .remabutton.alt a {
  130.     display: flex !important;
  131.     align-items: center !important;
  132.     justify-content: center !important;
  133.     height: 100% !important;
  134.     min-height: 0 !important;
  135.     font-size: 14px !important;
  136.     gap: 8px !important;
  137.     white-space: nowrap !important;
  138.   }
  139.   .remabutton.alt a img {
  140.     width: 16px !important;
  141.     height: 16px !important;
  142.     position: static !important;
  143.     flex-shrink: 0 !important;
  144.     filter: brightness(0) invert(1) !important;
  145.   }
  146.   /* ── Speichern button (toolbar) ───────────────────────────────────────── */
  147.   .pdp-toolbar .remabutton.safeproduct {
  148.     height: 48px !important;
  149.     padding-top: 0 !important;
  150.     padding-left: 20px !important;
  151.     padding-right: 20px !important;
  152.     width: 155px !important;
  153.   }
  154.   .pdp-toolbar .remabutton.safeproduct a {
  155.     display: flex !important;
  156.     align-items: center !important;
  157.     justify-content: center !important;
  158.     height: 100% !important;
  159.     min-height: 0 !important;
  160.     font-size: 14px !important;
  161.     gap: 8px !important;
  162.     white-space: nowrap !important;
  163.   }
  164.   .pdp-toolbar .remabutton.safeproduct a img {
  165.     width: 20px !important;
  166.     height: 20px !important;
  167.     position: static !important;
  168.     flex-shrink: 0 !important;
  169.   }
  170.   /* ── Toolbar: flex layout, Speichern & button pushed right ───────────── */
  171.   .pdp-toolbar > section {
  172.     display: flex !important;
  173.     align-items: center !important;
  174.     width: 100% !important;
  175.   }
  176.   .pdp-toolbar > section > div {
  177.     display: flex !important;
  178.     align-items: center !important;
  179.     width: auto !important;
  180.     vertical-align: unset !important;
  181.   }
  182.   .pdp-toolbar > section > div:nth-child(1),
  183.   .pdp-toolbar > section > div:nth-child(2) {
  184.     margin-right: 40px;
  185.   }
  186.   .pdp-toolbar > section > div:nth-child(3) {
  187.     margin-left: auto;
  188.     margin-right: 24px;
  189.   }
  190. </style>
  191. <div class="wrapper pdp-page">
  192.       <section>
  193.         <aside>
  194.           <div class="graph">
  195.             <img src="/static/img/graph.png">
  196.           </div>
  197.           <ul class="categories">
  198.             <li>
  199.               <strong>Katalog</strong>
  200.             </li>
  201.             <li>
  202.               <a href="#">Material Processing <small>(1441)</small><i>+</i></a>
  203.             </li>
  204.             <li>
  205.               <a href="#">Surface Protection <small>(177)</small><i>-</i></a>
  206.               <ul>
  207.                 <li>
  208.                   <a href="#">Gummierungs-Systeme <small>(128)</small></a>
  209.                 </li>
  210.                 <li>
  211.                   <a href="#">Beschichtungs-Systeme <small>(49)</small></a>
  212.                 </li>                
  213.               </ul>
  214.             </li>
  215.             <li>
  216.               <a href="#">Service <small>(706)</small><i>+</i></a>
  217.             </li>
  218.           </ul>
  219.           <ul class="misc">
  220.             <li>
  221.               <strong>Sonstiges</strong>
  222.             </li>
  223.             <li>
  224.               <a href="#">Downloads <small>(36)</small></a>
  225.             </li>
  226.             <li>
  227.               <a href="#">B-Ware <small>(36)</small></a>
  228.             </li>
  229.             <li>
  230.               <a href="#">CSV-Upload <small>(36)</small></a>
  231.             </li>
  232.             <li>
  233.               <a href="#">Offene Aufträge <small>(36)</small></a>
  234.             </li>
  235.             <li>
  236.               <a href="#">Abgeschlossene Aufträge <small>(36)</small></a>
  237.             </li>
  238.             <li>
  239.               <a href="#">Warenkörbe <small>(36)</small></a>
  240.             </li>
  241.             <li>
  242.               <a href="#">Media Center <small>(36)</small></a>
  243.             </li>                                                            
  244.           </ul>
  245.         </aside>
  246.         <article>
  247.           <div class="content-top">
  248.             <section>
  249.               <div class="left">
  250.                 <div class="fluid">
  251.                   <div class="span8">
  252.                     <div class="remabutton alt">
  253.                       <a href="/">
  254.                         <img src="/static/img/back.svg">
  255.                         Zurück
  256.                       </a>
  257.                     </div>
  258.                   </div>
  259.                   <div class="span4">
  260.                     <div class="pdp-lastmodified">
  261.                     <input type="hidden" id="id" value="{{product.id}}" />
  262.                       {% set creationdate = product.creationdate|date('U') %}
  263.                       {% set modificationdate = product.modificationdate|date('U') %}
  264.                       <label>Erstellt: {{creationdate|date('d.m.Y - H:i')}}</label>
  265.                       <label>Zuletzt bearbeitet: {{modificationdate|date('d.m.Y - H:i')}}</label>
  266.                       <label>Bearbeitet von: Hans Peter</label>
  267.                     </div>
  268.                   </div>
  269.                 </div>
  270.  
  271.                 <div class="clearleft"></div>
  272.                 <div class="pdp-shops-title">
  273.                   <strong>Produkt verfügbar für folgende Shops</strong>
  274.                 </div>
  275.                 <div class="pdp-shops-row">
  276.                   <div class="pdp-flags-list">
  277.                     <div class="active">
  278.                       <section><div><span><img src="/static/img/de.svg" height="14">DE</span></div></section>
  279.                     </div>
  280.                     <div class="active">
  281.                       <section><div><span><img src="/static/img/ch.svg" height="14">CH</span></div></section>
  282.                     </div>
  283.                     <div class="active">
  284.                       <section><div><span><img src="/static/img/lat.svg" height="14">LAT</span></div></section>
  285.                     </div>
  286.                     <div>
  287.                       <section><div><span><img src="/static/img/fr.svg" height="14">FR</span></div></section>
  288.                     </div>
  289.                     <div>
  290.                       <section><div><span><img src="/static/img/it.svg" height="14">IT</span></div></section>
  291.                     </div>
  292.                     <div class="active">
  293.                       <section><div><span><img src="/static/img/at.svg" height="14">AT</span></div></section>
  294.                     </div>
  295.                     <div>
  296.                       <section><div><span><img src="/static/img/esp.svg" height="14">ESP</span></div></section>
  297.                     </div>
  298.                   </div>
  299.                   <a href="#" class="pdp-delete-label">
  300.                     <img src="/static/img/delete.svg" width="14"> Löschung beantragen
  301.                   </a>
  302.                 </div>
  303.                 <div class="clearleft"></div>
  304.               </div>  
  305.               <div class="right">
  306.                 <div class="addnew">
  307.                   <i>+</i>
  308.                   <strong>Neues Produkt</strong>
  309.                 </div>
  310.               </div>
  311.             </section>
  312.           </div>
  313.           <section>
  314.             <section class="toolbar pdp-toolbar" style="border-top: 0;">
  315.               <section>
  316.                 <div>
  317.                   <label>Sprache</label>
  318.                   <section>
  319.                     <div>
  320.                       <span><img src="/static/img/de.svg" height="16">DE</span>
  321.                     </div>
  322.                   </section>
  323.                   <i class="chevron-arrow-down"></i>
  324.                 </div>       
  325.                 <div>
  326.                   <label>Status</label>
  327.                   <section>
  328.                     <div>
  329.                       <span><i class="red"></i>Entwurf</span>
  330.                     </div>                    
  331.                   </section>
  332.                   <i class="chevron-arrow-down"></i>
  333.                 </div>
  334.                 <div>
  335.                   <label class="toolbar-ai-label"><img src="/static/img/ai_icon.svg"> Speichern &amp; Übersetzen</label>
  336.                 </div>
  337.                 <div>
  338.                   <div class="remabutton safeproduct">
  339.                     <a href="#">
  340.                       <img src="/static/img/safe_icon.svg">
  341.                       Speichern
  342.                     </a>
  343.                   </div>
  344.                 </div>
  345.               </section>
  346.             </section>
  347.             <section class="pdp">
  348.               <div class="fluid">
  349.                 <div class="span4">
  350.                   <div class="input padding-right">
  351.                     <label>Artikelnummer</label>
  352.                     <div class="checkbox">
  353.                       <input type="checkbox">
  354.                       <span>Global</span>
  355.                     </div>
  356.                     <div class="field">
  357.                       <input type="text" placeholder="{{product.sku}}">
  358.                     </div>
  359.                   </div>
  360.                 </div>
  361.                 <div class="span8">
  362.                   <div class="input padding-left">
  363.                     <label>Produkttitel</label>
  364.                     <div class="checkbox">
  365.                       <input type="checkbox">
  366.                       <span>Global</span>
  367.                     </div>
  368.                     <div class="field">
  369.                       <input type="text" placeholder="{{product.name_de}}">
  370.                     </div>
  371.                   </div>
  372.                 </div>
  373.               </div>
  374.               <div class="clearleft"></div>
  375.               <div class="fluid">
  376.                 <div class="span6">
  377.                   <div class="standalone-inputlabel">Bilder &amp; Videos</div>
  378.                   <div class="photos">
  379.                     <div class="fluid">
  380.                       <div class="span5 left">
  381.                         <div style="background-image: url({{ product.mainimage.thumbnail('product_listing') }});"></div>
  382.                         
  383.                       </div>
  384.                       <div class="span7 right">
  385.                         <div style="background-image: url({{ product.mainimage.thumbnail('product_listing') }});"></div>
  386.                         <div style="background-image: url({{ product.mainimage.thumbnail('product_listing') }});"></div>
  387.                         <div style="background-image: url({{ product.mainimage.thumbnail('product_listing') }});"></div>
  388.                         <div style="background-image: url({{ product.mainimage.thumbnail('product_listing') }});"></div>
  389.                       </div>
  390.                     </div>
  391.                   </div>
  392.                 </div>
  393.                 <div class="span6">
  394.                   <div class="standalonecheckbox">
  395.                     <input type="checkbox" checked="">
  396.                     <span>Global</span>
  397.                   </div>
  398.                   <div class="upload">
  399.                     <img src="/static/img/upload.png" height="200">
  400.                   </div>
  401.                 </div>
  402.               </div>
  403.               <div class="clearleft"></div>
  404.               <div class="fluid">
  405.                 <div class="span2">
  406.                   <div class="input padding-right label">
  407.                     <label>Preis</label>
  408.                     <div class="field">
  409.                       <i>CHF</i>
  410.                       <input type="text" placeholder="" value="1'456.00">
  411.                     </div>
  412.                   </div>
  413.                 </div>
  414.                 <div class="span2">
  415.                   <div class="input padding-right label">
  416.                     <label>&nbsp;</label>
  417.                     <div class="field">
  418.                       <i>€</i>
  419.                       <input type="text" placeholder="" value="1'456.00">
  420.                     </div>
  421.                   </div>
  422.                 </div>
  423.                 <div class="span2">
  424.                   <div class="input padding-right label">
  425.                     <label>&nbsp;</label>
  426.                     <div class="field">
  427.                       <i>$</i>
  428.                       <input type="text" placeholder="" value="1'456.00">
  429.                     </div>
  430.                   </div>
  431.                 </div>
  432.                 <div class="span2">
  433.                   <div class="input padding-right label">
  434.                     <label>&nbsp;</label>
  435.                     <div class="field">
  436.                       <i>ARS</i>
  437.                       <input type="text" placeholder=" " value="1'456.00">
  438.                     </div>
  439.                   </div>
  440.                 </div>
  441.                 <div class="span2">
  442.                   <div class="magicbutton">
  443.                     <label><img src="/static/img/ai_icon.svg" width="16"> Umrechnen</label>
  444.                   </div>
  445.                 </div>                                                                
  446.               </div>
  447.               <div class="clearleft"></div>
  448.               <div class="fluid">
  449.                 <div class="span3">
  450.                   <div class="input padding-right">
  451.                     <label>Anzahl Lager</label>
  452.                     <div class="checkbox">
  453.                       <input type="checkbox" checked="">
  454.                       <span>Global</span>
  455.                     </div>
  456.                     <div class="field">
  457.                       <input type="text" placeholder="" value="{{product.qty}}">
  458.                     </div>
  459.                   </div>
  460.                 </div>
  461.                 <div class="span7">
  462.                   <div class="input padding-left">
  463.                     <label>Lagernotiz</label>
  464.                     <div class="checkbox">
  465.                       <input type="checkbox">
  466.                       <span>Global</span>
  467.                     </div>
  468.                     <div class="field">
  469.                       <input type="text" placeholder="" value="Artikel auf Lager">
  470.                     </div>
  471.                   </div>
  472.                 </div>
  473.                 <div class="span2">
  474.                   <div class="magicbutton">
  475.                     <label><img src="/static/img/lager_icon.svg" width="18"> Erweitert</label>
  476.                   </div>
  477.                 </div>
  478.               </div>
  479.  <div class="clearleft"></div>
  480.               <div class="fluid">
  481.                 <div class="span4">
  482.                   <div class="input padding-right">
  483.                     <label>Kurzbeschreibung</label>
  484.                     <div class="checkbox">
  485.                       <input type="checkbox">
  486.                       <span>Global</span>
  487.                     </div>
  488.                     <div class="textarea-ai-button-row">
  489.                       <div class="magicbutton textarea-ai-button">
  490.                         <label class="textarea-ai-button-label">
  491.                          
  492.                         </label>
  493.                         <div class="textarea-ai-button-menu">
  494.                           <div class="magic-action"><img src="/static/img/abc.svg"> Text komprimieren</div>
  495.                           <div class="magic-action"><img src="/static/img/longer.svg"> Text länger machen</div>
  496.                           <div class="magic-action"><img src="/static/img/shorter.svg"> Text kürzen</div>
  497.                           <div class="magic-action"><img src="/static/img/grammatik.svg"> Grammatik</div>
  498.                         </div>
  499.                       </div>
  500.                     </div>
  501.                     <div class="field">
  502.                       <textarea name="short_description_de" id="editor2">{{product.short_description_de | raw}}</textarea>
  503.                       <script>
  504.                       CKEDITOR.replace('editor2', {
  505.                         toolbar: [
  506.                           { name: 'paragraph', items: [ 'NumberedList', 'BulletedList' ] },
  507.                           { name: 'links',     items: [ 'Link', 'Unlink' ] }
  508.                         ],
  509.                         removePlugins: 'elementspath,resize,contextmenu',
  510.                         resize_enabled: false,
  511.                         allowedContent: true
  512.                       });
  513.                     </script>
  514.                     </div>
  515.                   </div>
  516.                 </div>
  517.                 <div class="span8">
  518.                   <div class="input padding-left">
  519.                     <label>Beschreibung</label>
  520.                     <div class="checkbox">
  521.                       <input type="checkbox">
  522.                       <span>Global</span>
  523.                     </div>
  524.                     <div class="textarea-ai-button-row">
  525.                       <div class="magicbutton textarea-ai-button">
  526.                         <label class="textarea-ai-button-label">
  527.                          
  528.                         </label>
  529.                         <div class="textarea-ai-button-menu">
  530.                           <div class="magic-action"><img src="/static/img/abc.svg"> Text komprimieren</div>
  531.                           <div class="magic-action"><img src="/static/img/longer.svg"> Text länger machen</div>
  532.                           <div class="magic-action"><img src="/static/img/shorter.svg"> Text kürzen</div>
  533.                           <div class="magic-action"><img src="/static/img/grammatik.svg"> Grammatik</div>
  534.                         </div>
  535.                       </div>
  536.                     </div>
  537.                     <div class="field">
  538.                       <textarea name="description_de" id="editor1">{{ product.description_de | raw }}</textarea>
  539.                       <script>
  540.                       CKEDITOR.replace('editor1', {   
  541.                         toolbar: [
  542.                           { name: 'clipboard',   items: [ 'Undo', 'Redo' ] },
  543.                           { name: 'basicstyles', items: [ 'Bold', 'Italic', 'Underline', 'Strike' ] },
  544.                           { name: 'paragraph',   items: [ 'NumberedList', 'BulletedList' ] },
  545.                           { name: 'links',       items: [ 'Link', 'Unlink' ] }
  546.                         ],
  547.                         removePlugins: 'elementspath,resize,contextmenu',
  548.                         resize_enabled: false,
  549.                         removeButtons: '',
  550.                         allowedContent: true
  551.                       });
  552.                     </script>  
  553.                     </div>
  554.                   </div>
  555.                 </div>
  556.               </div>
  557.  <div class="clearleft"></div>
  558.               <div class="fluid">
  559.                 <div class="span3 span3-alt">
  560.                   <div class="input label padding-right">
  561.                     <label>
  562.                       <img src="/static/img/pdf.svg" style="width:18px;height:auto;vertical-align:middle;margin-right:5px;">
  563.                       Dokumente
  564.                     </label>
  565.                     <div class="checkbox">
  566.                       <input type="checkbox">
  567.                       <span>Global</span>
  568.                     </div>
  569.                     <div class="field">
  570.                       <a href="{{product.safety_data_sheet_en}}" target="_blank"><i>PDF</i></a>
  571.                       <input type="text" placeholder="" value="Sicherheitsdatenblatt">
  572.                     </div>
  573.                     <p><a href="{{product.safety_data_sheet_en}}" target="_blank">Open document</a></p>
  574.                   </div>
  575.                 </div>
  576.                 <div class="span3 span3-alt">
  577.                   <div class="input label padding-right">
  578.                     <label>&nbsp;</label>
  579.                     <div class="field">
  580.                       <a href="{{product.safety_data_sheet_de}}" target="_blank"><i>PDF</i></a>
  581.                       <input type="text" placeholder="" value="Anleitung">
  582.                     </div>
  583.                     <p><a href="{{product.safety_data_sheet_de}}" target="_blank">Open document</a></p>
  584.                   </div>
  585.                 </div>
  586.                 <div id="addnewdocumentouter" class="span3 span3-alt">
  587.                   <div class="input padding-right label">
  588.                     <div id="addnewdocument" class="newdocument">+</div>
  589.                   </div>
  590.                 </div>
  591.               </div>
  592.  <div class="clearleft"></div>
  593.               
  594.               <div class="fluid">
  595.                 <div class="span4">
  596.                   <div class="input padding-right">
  597.                     <label>Gewicht</label>
  598.                     <div class="checkbox">
  599.                       <input type="checkbox" checked="">
  600.                       <span>Global</span>
  601.                     </div>
  602.                     <div class="field">
  603.                       <input type="text" placeholder="" value="{{product.spezifisches_gewicht}}">
  604.                     </div>
  605.                   </div>
  606.                 </div>
  607.                 <div class="span4">
  608.                   <div class="input padding-left">
  609.                     <label>Inhalt</label>
  610.                     <div class="checkbox">
  611.                       <input type="checkbox" checked="" >
  612.                       <span>Global</span>
  613.                     </div>
  614.                     <div class="field">
  615.                       <input type="text" placeholder="" value="{{product.content}}">
  616.                     </div>
  617.                   </div>
  618.                 </div>
  619.                 <div class="span4">
  620.                   <div class="input padding-left">
  621.                     <label>Masse</label>
  622.                     <div class="checkbox">
  623.                       <input type="checkbox" checked="">
  624.                       <span>Global</span>
  625.                     </div>
  626.                     <div class="field">
  627.                       <input type="text" placeholder="" value="{{product.warengruppenstruktur}}">
  628.                     </div>
  629.                   </div>
  630.                 </div>                
  631.               </div>
  632.               <div class="fluid">
  633.                 <div class="span4">
  634.                   <div class="input padding-right">
  635.                     <label>Maximale Bestellmenge</label>
  636.                     <div class="checkbox">
  637.                       <input type="checkbox" checked="">
  638.                       <span>Global</span>
  639.                     </div>
  640.                     <div class="field">
  641.                       <input type="text" placeholder="" value="{{product.maximale_bestellmenge}}">
  642.                     </div>
  643.                   </div>
  644.                 </div>
  645.                 <div class="span4">
  646.                   <div class="input padding-left">
  647.                     <label>Packungsmenge</label>
  648.                     <div class="checkbox">
  649.                       <input type="checkbox" checked="" >
  650.                       <span>Global</span>
  651.                     </div>
  652.                     <div class="field">
  653.                       <input type="text" placeholder="" value="{{product.packungsmenge}}">
  654.                     </div>
  655.                   </div>
  656.                 </div>
  657.                 <div class="span4">
  658.                   <div class="input padding-left">
  659.                     <label>Lieferbar am</label>
  660.                     <div class="checkbox">
  661.                       <input type="checkbox" checked="">
  662.                       <span>Global</span>
  663.                     </div>
  664.                     <div class="field">
  665.                       <input type="text" placeholder="" value="{{product.lieferbar_am}}">
  666.                     </div>
  667.                   </div>
  668.                 </div>                
  669.               </div>
  670.               <div class="fluid">
  671.                 <div class="span4">
  672.                   <div class="input padding-right">
  673.                     <label>Wieder lieferbar</label>
  674.                     <div class="checkbox">
  675.                       <input type="checkbox" checked="">
  676.                       <span>Global</span>
  677.                     </div>
  678.                     <div class="field">
  679.                       <input type="text" placeholder="" value="{{product.wieder_lieferbar}}">
  680.                     </div>
  681.                   </div>
  682.                 </div>
  683.                 <div class="span4">
  684.                   <div class="input padding-left">
  685.                     <label>Polymerbasis</label>
  686.                     <div class="checkbox">
  687.                       <input type="checkbox" checked="" >
  688.                       <span>Global</span>
  689.                     </div>
  690.                     <div class="field">
  691.                       <input type="text" placeholder="" value="{{product.polymerbasis}}">
  692.                     </div>
  693.                   </div>
  694.                 </div>
  695.                 <div class="span4">
  696.                   <div class="input padding-left">
  697.                     <label>UN Nummer</label>
  698.                     <div class="checkbox">
  699.                       <input type="checkbox" checked="">
  700.                       <span>Global</span>
  701.                     </div>
  702.                     <div class="field">
  703.                       <input type="text" placeholder="" value="{{product.un_nummer}}">
  704.                     </div>
  705.                   </div>
  706.                 </div>                
  707.               </div>
  708.               <div class="fluid">
  709.                 <div class="span4">
  710.                   <div class="input padding-right">
  711.                     <label>Solvent</label>
  712.                     <div class="checkbox">
  713.                       <input type="checkbox" checked="">
  714.                       <span>Global</span>
  715.                     </div>
  716.                     <div class="field">
  717.                       <input type="text" placeholder="" value="{{product.losungsmittel}}">
  718.                     </div>
  719.                   </div>
  720.                 </div>
  721.                 <div class="span4">
  722.                   <div class="input padding-left">
  723.                     <label>Bezeichnung</label>
  724.                     <div class="checkbox">
  725.                       <input type="checkbox" checked="" >
  726.                       <span>Global</span>
  727.                     </div>
  728.                     <div class="field">
  729.                       <input type="text" placeholder="" value="{{product.bezeichnung}}">
  730.                     </div>
  731.                   </div>
  732.                 </div>
  733.                 <div class="span4">
  734.                   <div class="input padding-left">
  735.                     <label>Zolltarifnummer</label>
  736.                     <div class="checkbox">
  737.                       <input type="checkbox" checked="">
  738.                       <span>Global</span>
  739.                     </div>
  740.                     <div class="field">
  741.                       <input type="text" placeholder="" value="{{product.zolltarifnummer}}">
  742.                     </div>
  743.                   </div>
  744.                 </div>                
  745.               </div>
  746.               <div class="fluid">
  747.                 <div class="span4">
  748.                   <div class="input padding-right">
  749.                     <label>Warengruppenstruktur</label>
  750.                     <div class="checkbox">
  751.                       <input type="checkbox" checked="">
  752.                       <span>Global</span>
  753.                     </div>
  754.                     <div class="field">
  755.                       <input type="text" placeholder="" value="{{product.warengruppenstruktur}}">
  756.                     </div>
  757.                   </div>
  758.                 </div>
  759.                 <div class="span4">
  760.                   <div class="input padding-left">
  761.                     <label>Nettogewicht</label>
  762.                     <div class="checkbox">
  763.                       <input type="checkbox" checked="" >
  764.                       <span>Global</span>
  765.                     </div>
  766.                     <div class="field">
  767.                       <input type="text" placeholder="" value="{{product.nettogewicht}}">
  768.                     </div>
  769.                   </div>
  770.                 </div>
  771.                 <div class="span4">
  772.                   <div class="input padding-left">
  773.                     <label>Gefahrgut</label>
  774.                     <div class="checkbox">
  775.                       <input type="checkbox" checked="">
  776.                       <span>Global</span>
  777.                     </div>
  778.                     <div class="field">
  779.                       <input type="text" placeholder="" value="{{product.gefahrgut}}">
  780.                     </div>
  781.                   </div>
  782.                 </div>                
  783.               </div>
  784.               <div class="fluid">
  785.                 <div class="span4">
  786.                   <div class="input padding-right">
  787.                     <label>Formularart</label>
  788.                     <div class="checkbox">
  789.                       <input type="checkbox" checked="">
  790.                       <span>Global</span>
  791.                     </div>
  792.                     <div class="field">
  793.                       <input type="text" placeholder="" value="{{product.formularart}}">
  794.                     </div>
  795.                   </div>
  796.                 </div>                
  797.               </div>
  798. <div class="clearleft"></div>
  799.             </section>
  800.             <section class="toolbar pdp-toolbar" style="border-bottom: 0;">
  801.               <section>
  802.                 <div>
  803.                   <label>Sprache</label>
  804.                   <section>
  805.                     <div>
  806.                       <span><img src="/static/img/de.svg" height="16">DE</span>
  807.                     </div>
  808.                   </section>
  809.                   <i class="chevron-arrow-down"></i>
  810.                 </div>       
  811.                 <div>
  812.                   <label>Status</label>
  813.                   <section>
  814.                     <div>
  815.                       <span><i class="red"></i>Entwurf</span>
  816.                     </div>                    
  817.                   </section>
  818.                   <i class="chevron-arrow-down"></i>
  819.                 </div>
  820.                 <div>
  821.                   <label class="toolbar-ai-label"><img src="/static/img/ai_icon.svg"> Speichern &amp; Übersetzen</label>
  822.                 </div>
  823.                 <div>
  824.                   <div class="remabutton safeproduct">
  825.                     <a href="#">
  826.                       <img src="/static/img/safe_icon.svg">
  827.                       Speichern
  828.                     </a>
  829.                   </div>
  830.                 </div>
  831.               </section>
  832.             </section>
  833.           </section>
  834.         </article>
  835.       </section>
  836.     </div>
  837. <script>
  838.   $(document).ready(function() {
  839.     $(document).on('click', '.textarea-ai-button-label', function(e) {
  840.       e.stopPropagation();
  841.       var $menu = $(this).closest('.textarea-ai-button').find('.textarea-ai-button-menu');
  842.       $('.textarea-ai-button-menu').not($menu).hide();
  843.       $menu.toggle();
  844.     });
  845.     $(document).on('click', function(e) {
  846.       if (!$(e.target).closest('.textarea-ai-button').length) {
  847.         $('.textarea-ai-button-menu').hide();
  848.       }
  849.     });
  850.   });
  851. </script>
  852. {% endblock %}