Kreditorenbuchungen: Bemerkungenblock an Rechnungen angepasst
authorSven Schöling <s.schoeling@googlemail.com>
Wed, 2 Dec 2020 15:46:51 +0000 (16:46 +0100)
committerSven Schöling <s.schoeling@googlemail.com>
Thu, 3 Dec 2020 16:01:16 +0000 (17:01 +0100)
templates/webpages/ap/form_header.html

index 4905645..a332733 100644 (file)
     </tr>
     <tr>
       <td>
-        <table width="100%">
-        <tr>
-          <th align="left" width="1%">[% 'Notes' | $T8 %]</th>
-          <td align="left">
-            <textarea name="notes" rows="[% textarea_rows %]" cols="50" wrap="soft" [% readonly %]>[% notes | html %]</textarea>
-          </td>
-
-          <th align="left" width=1%>[% 'Notes for vendor' | $T8 %]</th>
-          <td align="left">
-            <textarea name="intnotes" rows="[% textarea_rows %]" cols="50" wrap="soft" readonly>[% intnotes | html %]</textarea>
-          </td>
-        </tr>
-      </table>
+        <table>
+          <tr>
+           <th align="left">[% 'Notes' | $T8 %]</th>
+           <th align="left">[% 'Internal Notes' | $T8 %]</th>
+          </tr>
+          <tr valign="top">
+           <td>
+            [% L.textarea_tag("notes", notes, wrap="soft", rows=textarea_rows, cols=50, readonly=readonly) %]
+           </td>
+           <td>
+            [% L.textarea_tag("intnotes", intnotes, wrap="soft", rows=textarea_rows, cols=50, readonly=readonly) %]
+           </td>
+          <tr>
+        </table>
     </td>
   </tr>
   <tr>