Updated signature image generator Navigation menu has been finalized Some deprectaed templates has been removed Fixed registration Fixed galaxy notices messages Signed-off-by: Gregory PLANCHAT <g.planchat@gmail.com>
20 lines
No EOL
632 B
PHTML
20 lines
No EOL
632 B
PHTML
<div class="shipyard item-list">
|
|
<h1><?php echo $this->__('Shipyard')?></h1>
|
|
<form action="<?php echo $this->getUrl('buildings.php', array('mode' => 'fleet'))?>" method="post">
|
|
<dl>
|
|
<?php echo $this->getPartial('item-list.items')->render()?>
|
|
</dl>
|
|
<input type="submit" value="<?php echo $this->__('Build')?>">
|
|
</form>
|
|
<script type="text/javascript">
|
|
/*<![CDATA[*/
|
|
(function($){
|
|
$(document).ready(function(){
|
|
$('.shipyard .buy .max').click(function(){
|
|
$('#' + this.rel).val($('#' + this.rel + ':max').val());
|
|
});
|
|
});
|
|
})(jQuery);
|
|
/*]]>*/
|
|
</script>
|
|
</div>
|