<?php 
echo form_fieldset(lang('relations'));
?>
<p class="info"><?php 
echo lang('prerequisite_info');
?>
</p>
<?php 
echo form_multiselect_and_label('prerequisite', $experiments, isset($current_prerequisite_ids) ? $current_prerequisite_ids : array());
?>
<p class="info"><?php 
echo lang('excludes_info');
?>
</p>
<?php 
echo form_multiselect_and_label('excludes', $experiments, isset($current_exclude_ids) ? $current_exclude_ids : array());
?>
<p class="info"><?php 
echo lang('combination_info');
?>
</p>
<?php 
echo form_dropdown_and_label('combination', $experiments, isset($current_combination_ids) ? $current_combination_ids : array());
?>

<?php 
echo form_fieldset(lang('attachments'));
?>
<div class="pure-control-group">
<?php 
echo form_label(lang('attachment'), 'attachment');
</script>

<?php 
echo heading($page_title, 2);
?>

<?php 
echo $this->session->flashdata('message');
echo form_open('closing/add_submit/', array('class' => 'pure-form pure-form-aligned'));
echo form_fieldset(lang('add_closing'));
echo form_single_checkbox_and_label('lockdown', '1');
?>

<div id="location_field">
	<?php 
echo form_multiselect_and_label('location', $locations, array(), 'class="chosen-select"');
?>
</div>

<?php 
echo form_single_checkbox_and_label('all_day', '1');
?>
<div id="times">
	<?php 
echo form_input_and_label('from_date', '', 'id="from" readonly');
?>
	<?php 
echo form_input_and_label('to_date', '', 'id="to" readonly');
?>
</div>
<div id="all_day_field">