Part Controller - alte Artikeltemplates entfernt
authorG. Richardson <information@kivitendo-premium.de>
Thu, 1 Dec 2016 14:12:54 +0000 (15:12 +0100)
committerG. Richardson <information@kivitendo-premium.de>
Thu, 1 Dec 2016 14:43:08 +0000 (15:43 +0100)
templates/webpages/ic/assembly_row.html [deleted file]
templates/webpages/ic/form_footer.html [deleted file]
templates/webpages/ic/form_header.html [deleted file]
templates/webpages/ic/makemodel.html [deleted file]
templates/webpages/ic/price_row.html [deleted file]
templates/webpages/ic/sales_price_information.html [deleted file]
templates/webpages/ic/tabs/_edit_translations.html [deleted file]

diff --git a/templates/webpages/ic/assembly_row.html b/templates/webpages/ic/assembly_row.html
deleted file mode 100644 (file)
index 401b54a..0000000
+++ /dev/null
@@ -1,41 +0,0 @@
-[%- USE T8 %]
-[%- USE LxERP %]
-[%- USE HTML %]
-[%- USE L %]
-  <tr class=listheading>
-   <th class=listheading>[% 'Individual Items' | $T8 %]</th>
-  </tr>
-  <tr>
-   <td>
-    <table width=100%>
-     <tr>
-[%- FOREACH col = COLUMNS %]
-[%- SET hcol = HEADER.$col %]
-      <th[% ' nowrap' IF hcol.nowrap %][% ' width=' _ hcol.width IF hcol.width %][% ' align=' _ hcol.align IF hcol.align %]>[% hcol.text %]</th>
-[%- END %]
-     </tr>
-[%- FOREACH row = ROWS %]
-     <tr>
- [%- FOREACH col = COLUMNS %]
-  [%- SET rcol = row.$col %]
-  [%- IF rcol.escape %]
-      <td[% ' align=' _ rcol.align IF rcol.align %]>[%- HTML.escape(rcol.data) %]</td>
-  [%- ELSE %]
-      <td[% ' align=' _ rcol.align IF rcol.align %]>[%- IF rcol.link %][% L.link(rcol.link, rcol.data) %][% ELSE %][% rcol.data %][% END %]</td>
-  [%- END %]
- [%- END %]
- [%- FOREACH hidden = row.hiddens %]
-      <input type=hidden name="[% HTML.escape(hidden.name) %]" value="[% HTML.escape(hidden.value) %]">
- [%- END %]
-     </tr>
-[%- END %]
-     <tr>
-      <td colspan="6"></td>
-      <td>[% 'Totals' | $T8 %]</td>
-      <td align="right">[%- LxERP.format_amount(assembly_purchase_price_total, 2) %]</td>
-      <td align="right">[%- LxERP.format_amount(assemblytotal, 2) %]</td>
-     </tr>
-     <input type="hidden" name="assembly_rows" value="[% assembly_rows %]">
-    </table>
-   </td>
-  </tr>
diff --git a/templates/webpages/ic/form_footer.html b/templates/webpages/ic/form_footer.html
deleted file mode 100644 (file)
index a11c578..0000000
+++ /dev/null
@@ -1,99 +0,0 @@
-[%- USE T8 %]
-[%- USE HTML %]
-[%- USE LxERP %]
-  [%- IF item == 'assembly' %]
-  <!-- Wieder zurueck in die ic.pl, entweder alle Einzelteile auslagern oder gar keine -->
-  <!-- tr>
-    <td>
-      <table border="0" width="100%">
-        <tr>
-          <th colspan="2" align=right>[% 'Total' | $T8 %]&nbsp;</th>
-          <th align=right>[% 'Purchase Price' | $T8 %]:[% LxERP.format_amount(assembly_purchase_price_total, 2) %]  [% 'Sell Price' | $T8 %]: [% LxERP.format_amount(assemblytotal, 2) %]</th>
-        </tr>
-      </table>
-    </td>
-  </tr>
-  <input type="hidden" name="assembly_rows" value="[% HTML.escape(assembly_rows) %]" -->
-  [%- END %]
-
-  <input type="hidden" name="callback" value="[% HTML.escape(callback) %]">
-  <input type="hidden" name="previousform" value="[% HTML.escape(previousform) %]">
-  <input type="hidden" name="taxaccount2" value="[% HTML.escape(taxaccount2) %]">
-  <input type="hidden" name="vc" value="[% HTML.escape(vc) %]">
-  <tr>
-    <td><hr size="3" noshade></td>
-  </tr>
- </table>
-</div>
-
-[%- IF LANGUAGES.size %]
- [% PROCESS 'ic/tabs/_edit_translations.html' %]
-[%- END %]
-
-[%- IF id %]
-<div id="sales_price_information">
-  [% PROCESS ic/sales_price_information.html id=id %]
-</div>
-[%- END %]
-
-[%- IF CUSTOM_VARIABLES.size %]
-<div id="custom_variables">
-
- <p>[% 'Unchecked custom variables will not appear in orders and invoices.' | $T8 %]</p>
-
- <p>
-  <table>
-   [%- FOREACH var = CUSTOM_VARIABLES %]
-   <tr>
-    <td align="right" valign="top">[% var.VALID_BOX %]</td>
-    [%- IF !var.partsgroup_filtered %]
-      <td align="right" valign="top">[% HTML.escape(var.description) %]</td>
-    [%- END %]
-    <td valign="top">[% var.HTML_CODE %]</td>
-   </tr>
-   [%- END %]
-  </table>
- </p>
-</div>
-[%- END %]
-
-[%- IF id %]
-<div id='price_rules'>
-  <div id='price_rules_customer_report'></div>
-  <div id='price_rules_vendor_report'></div>
-</div>
-[%- END %]
-
-</div>
-
-[%- IF show_edit_buttons %]
-
-<input class="submit" type="submit" name="action" value="[% 'Update' | $T8 %]">
-<input type="hidden" name="price_rows" value="[% HTML.escape(price_rows) %]">
-<input class="submit" type="submit" name="action" value="[% 'Save' | $T8 %]">
-
-  [%- IF id %]
-    [%- UNLESS previousform %]
-<input class="submit" type="submit" name="action" value="[% 'Save as new' | $T8 %]">
-    [%- END %]
-
-    [%- IF orphaned %]
-      [%- UNLESS previousform %]
-        [%- IF item == 'assembly' %]
-          [%- UNLESS onhand %]
-<input class="submit" type="submit" name="action" value="[% 'Delete' | $T8 %]">
-          [%- END %]
-        [%- ELSE %]
-<input class="submit" type="submit" name="action" value="[% 'Delete' | $T8 %]">
-        [%- END %]
-      [%- END %]
-    [%- END %]
-  [%- END %]
-
-[%- END %]
-
-  [%- IF id != "" %]
-<input type="button" class="submit" onclick="set_history_window([% id %], 'id');" name="history" id="history" value="[% 'history' | $T8 %]">
-  [%- END %]
-
-</form>
diff --git a/templates/webpages/ic/form_header.html b/templates/webpages/ic/form_header.html
deleted file mode 100644 (file)
index ebd0b5b..0000000
+++ /dev/null
@@ -1,295 +0,0 @@
-[%- USE T8 %]
-[%- USE HTML %]
-[%- USE LxERP %][%- USE L -%][%- USE P -%]
-[% PROCESS 'common/select_warehouse_bin.html' %]
- <h1>[% title %]  [% HTML.escape(partnumber) %]  [% HTML.escape(description) %]</h1>
-
-[% INCLUDE 'common/flash.html' %]
-
- <form method="post" name="ic" action="[% script %]">
-
-  <input name="id" type="hidden" value="[% HTML.escape(id) %]">
-  <input name="part_type" type="hidden" value="[% HTML.escape(part_type) %]">
-  <input name="title" type="hidden" value="[% HTML.escape(title) %]">
-  <input name="makemodel" type="hidden" value="[% HTML.escape(makemodel) %]">
-  <input name="onhand" type="hidden" value="[% HTML.escape(onhand) %]">
-  <input name="orphaned" type="hidden" value="[% HTML.escape(orphaned) %]">
-  <input name="taxaccounts" type="hidden" value="[% HTML.escape(taxaccounts) %]">
-  <input name="rowcount" type="hidden" value="[% HTML.escape(rowcount) %]">
-  <input name="eur" type="hidden" value="[% HTML.escape(eur) %]">
-  <input name="original_partnumber" type="hidden" value="[% HTML.escape(original_partnumber) %]">
-  <input name="currow" type="hidden" value="[% HTML.escape(currow) %]">
-
-  <div id="ic_tabs" class="tabwidget">
-   <ul>
-    <li><a href="#master_data">[% 'Basic Data' | $T8 %]</a></li>
-[% IF LANGUAGES.size %]
-    <li><a href="#translations_tab">[% 'Translations' | $T8 %]</a></li>
-[% END %]
-    [%- IF id %]
-    <li><a href="#sales_price_information">[% 'Price information' | $T8 %]</a></li>
-    [%- END %]
-    [%- IF CUSTOM_VARIABLES.size %]
-    <li><a href="#custom_variables">[% 'Custom Variables' | $T8 %]</a></li>
-    [%- END %]
-    [%- IF id  %]
-    <li><a href="#price_rules">[% 'Price Rules' | $T8 %]</a></li>
-    [% END %]
-   </ul>
-
-  <div id="master_data">
-
-   <table width="100%">
-    <tr>
-     <td>
-      <table width="100%">
-       <tr valign="top">
-        <td>
-[%- IF image && INSTANCE_CONF.get_parts_show_image %]
-         <a href="[% image | html %]" target="_blank"><img style="[% INSTANCE_CONF.get_parts_image_css %]" src="[% image | html %]"/></a>
-[%- END %]
-
-         <table>
-          <tr>
-           <td colspan="2">
-            <table>
-             <tr>
-              <th align="right">[% 'Part Number' | $T8 %]</th>
-              <td><input id='partnumber' name="partnumber" value="[% HTML.escape(partnumber) %]" size="40" class="initial_focus"></td>
-             </tr>
-             <tr>
-              <th align="right">[% 'Part Description' | $T8 %]</th>
-              <td>
-               [%- IF description_area %]
-               <textarea name="description" rows="[% HTML.escape(rows) %]" cols="40" wrap="soft">[% HTML.escape(description) %]</textarea>
-               [%- ELSE %]
-               <input name="description" size="40" value="[% HTML.escape(description) %]">
-               [%- END %]
-              </td>
-             </tr>
-             <tr>
-               <th align="right">[% 'EAN-Code' | $T8 %]</th>
-               <td><input name="ean" size="40" value="[% HTML.escape(ean) %]"></td>
-             </tr>
-             <tr>
-              [%- IF all_partsgroup.size %]
-              <th align="right">[% 'Group' | $T8 %]</th>
-              <td>
-               [%- INCLUDE generic/multibox.html
-                     name       = 'partsgroup',
-                     DATA       = all_partsgroup,
-                     show_empty = 1,
-                     id_sub     = 'pg_keys',
-                     label_key  = 'partsgroup',
-                     style      = 'width:250px'
-               -%]
-              </td>
-              <input type="hidden" name="oldpartsgroup" value="[% HTML.escape(oldpartsgroup) %]">
-              [% END %]
-             </tr>
-
-
-             [%- IF BUCHUNGSGRUPPEN.size %]
-             <tr>
-              <th align="right">[% 'Booking group' | $T8 %]</th>
-              <td>
-               [%- INCLUDE generic/multibox.html
-                     name       = 'buchungsgruppen_id',
-                     DATA       = BUCHUNGSGRUPPEN,
-                     id_key     = 'id',
-                     label_key  = 'description',
-                     style      = 'width:250px'
-               -%]
-             </tr>
-             [%- END %]
-             <input type="hidden" name="IC_income" value="[% HTML.escape(IC_income_default) %]">
-             [%- UNLESS is_assembly %]
-             <input type="hidden" name="IC_expense" value="[% HTML.escape(IC_expense_default) %]">
-             [%- END %]
-             [%- IF is_part %]
-             <input type="hidden" name="IC" value="[% HTML.escape(IC_default) %]">
-             [%- END %]
-             <tr>
-              <th align="right">[% 'Payment Terms' | $T8 %]</th>
-              <td>
-               [%- INCLUDE generic/multibox.html
-                     name       = 'payment_id',
-                     DATA       = payment_terms,
-                     show_empty = 1,
-                     id_key     = 'id',
-                     label_key  = 'description',
-                     style      = 'width:250px'
-               -%]
-              </td>
-             </tr>
-            </table>
-           </td>
-          </tr>
-
-          <tr height="5"></tr>
-
-          <tr>
-           <td>
-            <table>
-             <tr>
-              <th align="left">[% 'Part Notes' | $T8 %]</th>
-              <th align="left">[% 'Formula' | $T8 %]</th>
-             </tr>
-             <tr valign="top">
-              <td>
-               [% L.textarea_tag("notes", P.restricted_html(notes), class="texteditor", style="width: 600px; height: 200px") %]
-              </td>
-              <td>
-                 <textarea name="formel" rows="[% HTML.escape(notes_rows) %]" cols="30" wrap="soft" class="tooltipster-html" title="[% 'The formula needs the following syntax:<br>For regular article:<br>Variablename= Variable Unit;<br>Variablename2= Variable2 Unit2;<br>...<br>###<br>Variable + ( Variable2 / Variable )<br><b>Please be beware of the spaces in the formula</b><br>' | $T8 %]">[% HTML.escape(formel) %]</textarea>
-               </td>
-             </tr>
-            </table>
-           </td>
-          </tr>
-         </table>
-        </td>
-
-        <td>
-         <table>
-          <tr>
-           <th align="right" nowrap="true">[% 'Updated' | $T8 %]</th>
-           <td>
-            <input name="priceupdate" id="priceupdate" size="11"  title="[% HTML.escape(dateformat) %]" value="[% HTML.escape(priceupdate) %]" readonly>
-           </td>
-          </tr>
-
-          <tr>
-           <th align="right" nowrap="true">[% 'List Price' | $T8 %]</th>
-           <td><input name="listprice" size="11" value="[% LxERP.format_amount(listprice, 2) %]"></td>
-          </tr>
-
-          <tr>
-           <th align="right" nowrap="true">[% 'Sell Price' | $T8 %]</th>
-           <td><input name="sellprice" size="11" value="[% LxERP.format_amount(sellprice, 2) %]"></td>
-          </tr>
-
-          [%- UNLESS is_assembly %]
-          <tr>
-           <th align="right" nowrap="true">[% 'Last Cost' | $T8 %]</th>
-           <td><input name="lastcost" size="11" value="[% LxERP.format_amount(lastcost, 2) %]"></td>
-          </tr>
-          [%- END %]
-
-          [%- IF ALL_PRICE_FACTORS.size %]
-          <tr>
-           <th align="right">[% 'Price Factor' | $T8 %]</th>
-           <td>
-            [%- INCLUDE generic/multibox.html
-                  name       = 'price_factor_id',
-                  DATA       = ALL_PRICE_FACTORS,
-                  show_empty = 1,
-                  id_key     = 'id',
-                  label_key  = 'description',
-                  style      = 'width:100px'
-            -%]
-           </td>
-          </tr>
-          [%- END %]
-
-          <tr>
-           <th align="right" nowrap="true">[% 'Unit' | $T8 %]</th>
-           <td>
-            <input type="hidden" name="unit_changeable" value="[% HTML.escape(unit_changeable) %]">
-            [%- UNLESS unit_changeable %]
-            <input type="hidden" name="unit" value="[% HTML.escape(unit) %]">[% HTML.escape(unit) %]
-            [%- ELSE %]
-            [%- INCLUDE generic/multibox.html
-                  name       = 'unit',
-                  DATA       = ALL_UNITS,
-                  id_key     = 'name',
-                  label_key  = 'name',
-                  style      = 'width:100px'
-            -%]
-            [%- END %]
-           </td>
-          </tr>
-
-        [%- UNLESS is_service %]
-          <tr>
-           <th align="right" nowrap="true">[% 'Weight' | $T8 %]</th>
-           <td>
-            [%- IF is_assembly %]&nbsp;[% LxERP.format_amount(weight) %][%- END %]
-            <input[% IF is_assembly %] type="hidden"[% END %] size="10" name="weight" value="[% LxERP.format_amount(weight) %]">
-            [% HTML.escape(defaults.weightunit) %]
-           </td>
-          </tr>
-        [%- END %]
-          <tr>
-           <th align="right" nowrap>[% 'On Hand' | $T8 %]</th>
-           <th align="left" nowrap class="plus[% IF onhand > 0 %]1[% ELSE %]0[% END %]">&nbsp;[% LxERP.format_amount(onhand) %]</th>
-          </tr>
-          <tr>
-           <th align="right" nowrap="true">[% 'ROP' | $T8 %]</th>
-           <td><input name="rop" size="10" value="[% LxERP.format_amount(rop) %]"></td>
-          </tr>
-          <tr>
-           <th align="right" nowrap="true">[% 'Default Warehouse' | $T8 %]</th>
-           <td>
-            <select name="warehouse_id" onchange="warehouse_selected(warehouses[this.selectedIndex]['id'], 0)">
-             [%- FOREACH warehouse = WAREHOUSES %]
-               <option value="[% HTML.escape(warehouse.id) %]"[% IF warehouse_id == warehouse.id %] selected[% END %]>[% warehouse.description %]</option>
-             [%- END %]
-            </select>
-          </td>
-          </tr>
-          <tr>
-           <th align="right" nowrap="true">[% 'Default Bin' | $T8 %]</th>
-           <td><select id="bin_id" name="bin_id"></select></td>
-          </tr>
-          <tr>
-           <th align="right" nowrap="true">[% 'Verrechnungseinheit' | $T8 %]</th>
-           <td><input name="ve" size="10" value="[% HTML.escape(ve) %]"></td>
-          </tr>
-          <tr>
-           <th align="right" nowrap="true">[% 'Business Volume' | $T8 %]</th>
-           <td><input name="gv" size="10" value="[% LxERP.format_amount(gv) %]"></td>
-          </tr>
-          <tr>
-           <th align="right" nowrap><label for="not_discountable">[% 'Not Discountable' | $T8 %]</label></th>
-           <td><input class="checkbox" type="checkbox" name="not_discountable" id="not_discountable" value="1" [% IF not_discountable %]checked[% END %]></td>
-          </tr>
-        [%- IF id %]
-          <tr>
-           <th align="right" nowrap="true"><label for="obsolete">[% 'Obsolete' | $T8 %]</label></th>
-           <td><input name="obsolete" id="obsolete" type="checkbox" class="checkbox" value="1" [% IF obsolete %]checked[% END %]></td>
-          </tr>
-        [%- END %]
-        [%- UNLESS is_service %]
-          <tr>
-           <th align="right" nowrap><label for="has_sernumber">[% 'Has serial number' | $T8 %]</label></th>
-           <td><input class="checkbox" type="checkbox" name="has_sernumber" id="has_sernumber" value="1" [% IF has_sernumber %]checked[% END %]></td>
-          </tr>
-        [%- END %]
-          <tr>
-           <th align="right" nowrap><label for="shop">[% 'Shop article' | $T8 %]</label></th>
-           <td><input class="checkbox" type="checkbox" name="shop" id="shop" value="1" [% IF shop %]checked[% END %]></td>
-          </tr>
-         </table>
-        </td>
-       </tr>
-      </table>
-     </td>
-    </tr>
-
-
-    <tr>
-     <td>
-      <table>
-       <tr>
-        <th align="right" nowrap>[% 'Image' | $T8 %]</th>
-        <td><input name="image" size="40" value="[% HTML.escape(image) %]"></td>
-        <th align="right" nowrap>[% 'Microfiche' | $T8 %]</th>
-        <td><input name="microfiche" size="20" value="[% HTML.escape(microfiche) %]"></td>
-       </tr>
-       <tr>
-        <th align="right" nowrap>[% 'Drawing' | $T8 %]</th>
-        <td><input name="drawing" size="40" value="[% HTML.escape(drawing) %]"></td>
-       </tr>
-      </table>
-     </td>
-    </tr>
diff --git a/templates/webpages/ic/makemodel.html b/templates/webpages/ic/makemodel.html
deleted file mode 100644 (file)
index 4daad81..0000000
+++ /dev/null
@@ -1,36 +0,0 @@
-[%- USE T8 %]
-[%- USE HTML %]
-[%- USE LxERP %]
-  <tr>
-    <td>
-      <table>
-        <tr>
-          <th class="listheading">[% 'Make' | $T8 %]</th>
-          <th class="listheading">[% 'Model' | $T8 %]</th>
-          <th class="listheading">[% 'Last Cost' | $T8 %]</th>
-          <th class="listheading">[% 'Updated' | $T8 %]</th>
-          <th class="listheading">[% 'order' | $T8 %]</th>
-        </tr>
-      [%- FOREACH row = MM_DATA %]
-        <tr>
-          <td>
-            [%- INCLUDE generic/multibox.html
-                  name       = "make_$loop.count",
-                  default    = row.make,
-                  DATA       = ALL_VENDORS,
-                  show_empty = 1,
-                  label_key  = 'name',
-                  id_key     = 'id',
-            -%]
-          </td>
-          <td><input name="model_[% loop.count %]" size="30" value="[% HTML.escape(row.model) %]"></td>
-          <td><input type="hidden" name="old_lastcost_[% loop.count %]" value="[% LxERP.format_amount(row.lastcost, 2) %]">
-              <input name="lastcost_[% loop.count %]" size="10" value="[% LxERP.format_amount(row.lastcost, 2) %]"></td>
-          <td><input name="lastupdate_[% loop.count %]" size="10" value="[% HTML.escape(row.lastupdate) %]"></td>
-          <td><input name="sortorder_[% loop.count %]" size="3" value="[% HTML.escape(row.sortorder) %]"></td>
-        </tr>
-      [%- END %]
-      </table>
-    </td>
-  </tr>
-  <input type="hidden" name="makemodel_rows" value="[% mm_rows %]">
diff --git a/templates/webpages/ic/price_row.html b/templates/webpages/ic/price_row.html
deleted file mode 100644 (file)
index 10f4b5b..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
-[%- USE T8 %]
-[%- USE HTML %]
-[%- USE LxERP %]
-[%- IF PRICES.size %]
-  <tr>
-    <td>
-      <table width=100%>
-        <tr>
-          <th class="listheading">[% 'Price group' | $T8 %]</th>
-          <th class="listheading">[% 'Price' | $T8 %]</th>
-        </tr>
-[%- FOREACH row = PRICES %]
-        <tr class="listrow[% loop.count % 2 %]">
-          <td width=50%><input type=hidden name="pricegroup_[% loop.count %]" size=30  value="[% HTML.escape(row.pricegroup) %]">[% HTML.escape(row.pricegroup) %]</td>
-          <td width=50%><input name="price_[% loop.count %]" size=11 value="[% LxERP.format_amount(row.price, 2) %]"></td>
-          <input type="hidden" name="pricegroup_id_[% loop.count %]" value="[% HTML.escape(row.pricegroup_id) %]">
-        </tr>
-[%- END %]
-      </table>
-    </td>
-  </tr>
-[%- END %]
diff --git a/templates/webpages/ic/sales_price_information.html b/templates/webpages/ic/sales_price_information.html
deleted file mode 100644 (file)
index 012a68b..0000000
+++ /dev/null
@@ -1,34 +0,0 @@
-<div id='sales_price_information_sales_order'></div>
-<div id='sales_price_information_sales_quotation'></div>
-<div id='parts_price_history'></div>
-
-<script type='text/javascript'>
-  function get_report(target, source, data){
-    $.ajax({
-      url:        source,
-//      beforeSend: function () { $(target).html('<img src="image/spinner.gif">') },
-      success:    function (rsp) {
-        $(target).html(rsp);
-        $(target).find('.paginate').find('a').click(function(event){ redirect_event(event, target) });
-        $(target).find('a.report-generator-header-link').click(function(event){ redirect_event(event, target) });
-      },
-      data:       data,
-    });
-  };
-
-  function redirect_event(event, target){
-    event.preventDefault();
-    get_report(target, event.target + '', {});
-  }
-
-  $('.tabwidget').on('tabsbeforeactivate', function(event, ui){
-    if (ui.newPanel.attr('id') == 'sales_price_information') {
-      get_report('#sales_price_information_sales_order', 'controller.pl', { action: 'SellPriceInformation/list', 'filter.part.id': [% id %], 'filter.order.type': 'sales_order' });
-      get_report('#sales_price_information_sales_quotation', 'controller.pl', { action: 'SellPriceInformation/list', 'filter.part.id': [% id %], 'filter.order.type': 'sales_quotation' });
-      get_report('#parts_price_history', 'controller.pl', { action: 'PartsPriceHistory/list', 'filter.part_id': [% id %] });
-    }
-    return 1;
-  });
-
-
-</script>
diff --git a/templates/webpages/ic/tabs/_edit_translations.html b/templates/webpages/ic/tabs/_edit_translations.html
deleted file mode 100644 (file)
index 1d0d6c1..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
-[%- USE HTML %][%- USE L -%][%- USE P -%][%- USE LxERP -%]
-
-<div id="translations_tab">
- <table>
-  <tr class="listheading">
-   <th>[% LxERP.t8("Language") %]</th>
-   <th>[% LxERP.t8("Description") %]</th>
-   <th>[% LxERP.t8("Long Description") %]</th>
-  </tr>
-
-  [%- FOREACH language = LANGUAGES %]
-   [% SET language_id = language.id
-          translation = translations_map.$language_id %]
-   [% L.hidden_tag('translations[+].language_id', language.id) %]
-   <tr class="listrow" valign="top">
-    <td>[% HTML.escape(language.description) %]</td>
-    <td>[% L.input_tag("translations[].translation", translation.translation) %]</td>
-    <td>[% L.textarea_tag("translations[].longdescription", P.restricted_html(translation.longdescription), id="translations_longdescription_" _ language_id, class="texteditor", style="width: 500px; height: 100px") %]</td>
-   </tr>
-  [%- END %]
- </table>
-</div>