root/templates/schiff.cargo.default.html

Revision 2193fdb03bec86da29b451687ac4f02530f867fd, 3.1 kB (checked in by Christopher Jung <bktheg@web.de>, 1 year ago)

Man kann jetzt selbst waehlen, ob Jaeger des Traegers starten sollen.

  • Property mode set to 100644
Line 
1 <!--
2         Drifting Souls 2
3         Copyright (c) 2006 Christopher Jung
4        
5         This library is free software; you can redistribute it and/or
6         modify it under the terms of the GNU Lesser General Public
7         License as published by the Free Software Foundation; either
8         version 2.1 of the License, or (at your option) any later version.
9  
10         This library is distributed in the hope that it will be useful,
11         but WITHOUT ANY WARRANTY; without even the implied warranty of
12         MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13         Lesser General Public License for more details.
14  
15         You should have received a copy of the GNU Lesser General Public
16         License along with this library; if not, write to the Free Software
17         Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
18 -->
19 <!-- BEGIN schiff.cargo.reslist.listitem -->
20         <img style="vertical-align:middle" src="{res.image}" alt="" />{res.name} {res.cargo}
21         <br />
22 <!-- END schiff.cargo.reslist.listitem -->
23 <img src="{URL}data/interface/leer.gif" alt="Leer" />Leer {schiff.cargo.empty}
24 <hr style="height:1px; border:0px; background-color:#606060; color:#606060" />
25 {if schiff.cargo.batterien}
26         <form action="./ds" method="post">
27                 <div>
28                         Batterien entladen:<br />
29                         <input name="cargo_ops[unload]" type="text" size="2" value="0" />
30                         {!form_create_hidden plugin, ship:$ship.id, plugin:$global.pluginid}
31                         <input type="hidden" name="cargo_ops[act]" value="unload" />
32                         <input type="submit" value="entladen" />
33                         <input type="submit" name="cargo_ops[max]" value="max" /><br />
34                 </div>
35         </form><br />
36 {/endif}
37 {if schiff.cargo.lbatterien}
38         <form action="./ds" method="post">
39                 <div>
40                         Batterien aufladen:<br />
41                         <input name="cargo_ops[load]" type="text" size="2" value="0" />
42                         {!form_create_hidden plugin, ship:$ship.id, plugin:$global.pluginid}
43                         <input type="hidden" name="cargo_ops[act]" value="load" />
44                         <input type="submit" value="aufladen" />
45                         <input type="submit" name="cargo_ops[max]" value="max" />
46                 </div>
47         </form><br />
48 {/endif}
49 {if schiff.cargo.tanker}
50         <form action="./ds" method="post">
51                 <div>
52                         Automatisch <img style="vertical-align:middle" src="{resource.RES_DEUTERIUM.image}" alt="Deuterium" /> sammeln:<br />
53                         <input id="cargo_ops_autodeut" name="cargo_ops[autodeut]" type="checkbox" value="1" {if schiff.cargo.tanker.autodeut}checked="checked"{/endif} />
54                         <label for="cargo_ops_autodeut">aktivieren</label>&nbsp;
55                         {!form_create_hidden plugin, ship:$ship.id, plugin:$global.pluginid}
56                         <input type="hidden" name="cargo_ops[setautodeut]" value="1" />
57                         <input type="submit" value="ok" />
58                 </div>
59         </form>
60 {/endif}
61 {if schiff.cargo.traeger}
62         <form action="./ds" method="post">
63                 <div>
64                         Automatisch starten:<br />
65                         <input id="cargo_ops_startfighter" name="cargo_ops[startfighter]" type="checkbox" value="1" {if schiff.cargo.traeger.startfighter}checked="checked"{/endif} />
66                         <label for="cargo_ops_startfighter">aktivieren</label>&nbsp;
67                         {!form_create_hidden plugin, ship:$ship.id, plugin:$global.pluginid}
68                         <input type="hidden" name="cargo_ops[setstartfighter]" value="1" />
69                         <input type="submit" value="ok" />
70                 </div>
71         </form>
72 {/endif}
Note: See TracBrowser for help on using the browser.