<?php defined('_JEXEC') or die('Restricted access'); ?>
<?php JHTML::_('behavior.tooltip'); ?>
<?php
JToolBarHelper::title( JText::_( 'Registered' ).": <small><small>[".JText::_( $this->task )."]</small></small>", 'plugin.png' );
JToolBarHelper::save();
JToolBarHelper::apply();
JToolBarHelper::cancel();
?>
<form action="index.php" method="post" name="adminForm" id="adminForm">
<fieldset class="adminForm">
<legend><?php echo JText::_( "Details" )?></legend>
<table class="admintable">
<?php
if($this->task=="edit"){ ?>
<tr>
<td width="100" align="right" class="key">
<?php echo JText::_( "ID" )?>:
</td>
<td>
<?php echo $this->row->id;?>
</td>
</tr>
<tr>
<td width="100" align="right" class="key">
<?php echo JText::_( "register date" )?>:
</td>
<td>
<?php echo $this->row->registerIP;?>
</td>
</tr>
<tr>
<td width="100" align="right" class="key">
<?php echo JText::_( "register ip" )?>:
</td>
<td>
<?php echo strftime(JText::_("DATE_FORMET_LC5"),strtotime($this->row->registerData));?>
</td>
</tr>
<?php }?>
<tr>
<td width="100" align="right" class="key">
<?php echo JText::_( "dorsal" )?>:
</td>
<td>
<input class="text_area" type="text" name="dorsal" id="dorsal" size="4" maxlength="4" value="<?php echo $this->row->dorsal;?>"/>
</td>
</tr>
<tr>
<td width="100" align="right" class="key">
<?php echo JText::_( "uci code" )?>:
</td>
<td>
<input class="text_area" type="text" name="codUCI" id="codUCI" size="15" maxlength="15" value="<?php echo $this->row->codUCI;?>"/>
</td>
</tr>
<tr>
<td width="100" align="right" class="key">
<?php echo JText::_( "NRLICENCE" )?>:
</td>
<td>
<input class="text_area" type="text" name="nroLicence" id="nroLicence" size="15" maxlength="15" value="<?php echo $this->row->nroLicence;?>"/>
</td>
</tr>
<tr>
<td width="100" align="right" class="key">
<?php echo JText::_( "name" )?>:
</td>
<td>
<input class="text_area" type="text" name="name" id="name" size="100" maxlength="256" value="<?php echo $this->row->name;?>"/>
</td>
</tr>
<tr>
<td width="100" align="right" class="key">
<?php echo JText::_( "category" )?>:
</td>
<td>
<input class="text_area" type="text" name="category" id="category" size="60" maxlength="256" value="<?php echo $this->row->category;?>"/>
</td>
</tr>
<tr>
<td width="100" align="right" class="key">
<?php echo JText::_( "club" )?>:
</td>
<td>
<input class="text_area" type="text" name="club" id="club" size="60" maxlength="256" value="<?php echo $this->row->club;?>"/>
</td>
</tr>
<tr>
<td width="100" align="right" class="key">
<?php echo JText::_( "sponsor" )?>:
</td>
<td>
<input class="text_area" type="text" name="sponsor" id="sponsor" size="60" maxlength="256" value="<?php echo $this->row->sponsor;?>"/>
</td>
</tr>
</table>
</fieldset>
<input type="hidden" name="id" value="<?php echo $this->row->id;?>"/>
<input type="hidden" name="idRace" value="<?php echo $this->row->idRace;?>"/>
<input type="hidden" name="option" value="com_chalange"/>
<input type="hidden" name="task" value=""/>
<input type="hidden" name="boxchecked" value="0"/>
<input type="hidden" name="controller" value="registered"/>
</form>