Changeset 8866c32d53b32c5365b4bfab30879d3238282acc for templates
- Timestamp:
- 07/31/08 15:00:39 (4 months ago)
- git-parent:
- Files:
-
- templates/fleetmgnt.html (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
templates/fleetmgnt.html
r5e49daa r8866c32 211 211 document.getElementById("buildid").style.display = 'none'; 212 212 } 213 214 if(action == "getCrew") 215 { 216 document.getElementById("crewinpercent").style.display = 'inline'; 217 document.getElementById("percent").style.display = 'inline'; 218 } 219 else 220 { 221 document.getElementById("crewinpercent").style.display = 'none'; 222 document.getElementById("percent").style.display = 'none'; 223 } 213 224 } 214 225 --> … … 239 250 <option value="build">Schiffe bauen</option> 240 251 {/endif} 252 {if astiinsector} 253 <option value="getCrew">Schiffe bemannen</option> 254 {/endif} 241 255 <option value="rename">Flotte umbenennen</option> 242 256 <option value="kill">auflösen</option> … … 265 279 <option value="1">rot</option> 266 280 </select> 281 {if astiinsector} 282 <input type="text" id="crewinpercent" name="crewinpercent" style="display:none" size="3" maxlength="3" /><span id="percent" name="percent" style="display:none">%</span> 283 {/endif} 267 284 {if buildableships.list} 268 <input type="text" id="buildcount" name="buildcount" style="display:none" size="3" maxlength="3" />269 <select id="buildid" name="buildid" size="1" style="display:none">270 <!-- BEGIN buildableships.listitem -->271 <option value="{buildableships.id}">{buildableships.name}</option>272 <!-- END buildableships.listitem -->273 </select>285 <input type="text" id="buildcount" name="buildcount" style="display:none" size="3" maxlength="3" /> 286 <select id="buildid" name="buildid" size="1" style="display:none"> 287 <!-- BEGIN buildableships.listitem --> 288 <option value="{buildableships.id}">{buildableships.name}</option> 289 <!-- END buildableships.listitem --> 290 </select> 274 291 {/endif} 275 292 <input type="submit" value="ok" />
