locales.pl von nach locale/en kopiert und dort ausgeführt.
[kivitendo-erp.git] / templates / webpages / projects / project_form_de.html
index 231797b..7409d11 100644 (file)
@@ -6,46 +6,75 @@
  <hr>
  [%- END %]
 
+ <p><div class="listtop">[% title %]</div></p>
+
  <form method="post" action="projects.pl">
 
   <input type="hidden" name="project.id" value="[% HTML.escape(project.id) %]">
+  <input type="hidden" name="callback" value="[% HTML.escape(callback) %]">
+
+  <ul id="maintab" class="shadetabs">
+   <li class="selected"><a href="#" rel="basic_data">Basisdaten</a></li>
+   [%- IF CUSTOM_VARIABLES.size %]
+   <li><a href="#" rel="custom_variables">Benutzerdefinierte Variablen</a></li>
+   [%- END %]
+  </ul>
 
-  <div class="listtop">[% title %]</div>
+  <div class="tabcontentstyle">
 
-  <p>
-   <table>
-    <tr>
-     <th align="right">Nummer</th>
-     <td><input name="project.projectnumber" size="20" value="[% HTML.escape(project.projectnumber) %]"></td>
-    </tr>
-
-    <tr>
-     <th align="right">Beschreibung</th>
-     <td>
-      [%- SET rows = LxERP.numtextrows(project.description, 60) %]
-      [%- IF rows > 1 %]
-      <textarea name="project.description" rows="rows" cols="60" style="width: 100%" wrap="soft">[% HTML.escape(project.description) %]</textarea>
-      [%- ELSE %]
-      <input name="project.description" size="60" value="[% HTML.escape(project.description) %]">
+   <div id="basic_data" class="tabcontent">
+
+    <table>
+     <tr>
+      <th align="right">Nummer</th>
+      <td><input name="project.projectnumber" size="20" value="[% HTML.escape(project.projectnumber) %]"></td>
+     </tr>
+
+     <tr>
+      <th align="right">Beschreibung</th>
+      <td>
+       [%- SET rows = LxERP.numtextrows(project.description, 60) %]
+       [%- IF rows > 1 %]
+       <textarea name="project.description" rows="rows" cols="60" style="width: 100%" wrap="soft">[% HTML.escape(project.description) %]</textarea>
+       [%- ELSE %]
+       <input name="project.description" size="60" value="[% HTML.escape(project.description) %]">
+       [%- END %]
+      </td>
+     </tr>
+
+     [%- IF project.id %]
+     <tr>
+      <th align="right">&nbsp;</th>
+      <td>
+       <input type="radio" name="project.active" id="active_1" value="1"[% IF project.active %] checked[% END %]><label for="active_1">Aktiv</label>
+       <input type="radio" name="project.active" id="active_0" value="0"[% IF !project.active %] checked[% END %]><label for="active_0">Inaktiv</label>
+      </td>
+     </tr>
+     [%- END %]
+    </table>
+
+    <br style="clear: left" />
+   </div>
+
+   [%- IF CUSTOM_VARIABLES.size %]
+   <div id="custom_variables" class="tabcontent">
+
+    <p>
+     <table>
+      [%- FOREACH var = CUSTOM_VARIABLES %]
+      <tr>
+       <td align="right" valign="top">[% HTML.escape(var.description) %]</td>
+       <td valign="top">[% var.HTML_CODE %]</td>
+      </tr>
       [%- END %]
-     </td>
-    </tr>
-
-    [%- IF project.id %]
-    <tr>
-     <th align="right">&nbsp;</th>
-     <td>
-      <input type="radio" name="project.active" id="active_1" value="1"[% IF project.active %] checked[% END %]><label for="active_1">Aktiv</label>
-      <input type="radio" name="project.active" id="active_0" value="0"[% IF !project.active %] checked[% END %]><label for="active_0">Inaktiv</label>
-     </td>
-    </tr>
-    [%- END %]
-   </table>
-  </p>
+     </table>
+    </p>
 
-  <p><hr size="3" noshade></p>
+    <br style="clear: left" />
+   </div>
+   [%- END %]
 
-  <input name="callback" type="hidden" value="[% HTML.escape(callback) %]">
+  </div>
 
   <p>
    <input type="submit" class="submit" name="action" value="Speichern">
   </p>
  </form>
 
+ <script type="text/javascript">
+  <!--
+      var maintab = new ddtabcontent("maintab");
+      maintab.setpersist(true);
+      maintab.setselectedClassTarget("link"); //"link" or "linkparent"
+      maintab.init();
+    -->
+ </script>
+
 </body>
 </html>