Changeset 5e49daa22ec8d86487ddac25102c415a950874e8 for templates
- Timestamp:
- 07/20/08 18:15:48 (1 month ago)
- git-parent:
- Files:
-
- templates/fleetmgnt.html (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
templates/fleetmgnt.html
ref36dc7 r5e49daa 202 202 document.getElementById("alarm").style.display = 'none'; 203 203 } 204 205 if( action == "build" ) { 206 document.getElementById("buildcount").style.display = 'inline'; 207 document.getElementById("buildid").style.display = 'inline'; 208 } 209 else { 210 document.getElementById("buildcount").style.display = 'none'; 211 document.getElementById("buildid").style.display = 'none'; 212 } 204 213 } 205 214 --> … … 226 235 {if fleetcombine.list} 227 236 <option value="fleetcombine">Flotten zusammenlegen</option> 237 {/endif} 238 {if buildableships.list} 239 <option value="build">Schiffe bauen</option> 228 240 {/endif} 229 241 <option value="rename">Flotte umbenennen</option> … … 253 265 <option value="1">rot</option> 254 266 </select> 267 {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> 274 {/endif} 255 275 <input type="submit" value="ok" /> 256 276 </form>
