echo image_tag('spinning_16.gif', array('style' => 'margin-right: 5px; display: none;', 'id' => 'add_custom_type_indicator'));
?>
						</div>
						<label for="new_custom_field_name" style="width: 150px; display: inline-block;"><?php 
echo __('Add new issue field');
?>
</label>
						<input type="text" name="name" id="new_custom_field_name" style="width: 250px;">
						<br style="clear: both;">
						<label for="new_custom_field_name" style="width: 150px; display: inline-block;"><?php 
echo __('Field type');
?>
</label>
						<select id="new_custom_field_type" name="field_type" style="width: 400px;">
							<?php 
foreach (TBGCustomDatatype::getFieldTypes() as $type => $description) {
    ?>
								<option value="<?php 
    echo $type;
    ?>
"><?php 
    echo $description;
    ?>
</option>
							<?php 
}
?>
						</select>
						<br style="clear: both;">
					</form>
				</div>