<div>

	<section class="incidents_export">
		<h1>Incidents Export</h1>

		<h2>{{count}}
			incidents</h2>

<form action="{{url}}" method="POST">
		<table class="form-table" role="presentation">

			<tbody>
				<tr>
					<th>Type of Transportations</th>
					<td>
						<select style="width:100%" class="select_js" name="transportations[]" multiple="multiple">
							{% for item in transports %}
								<option value="{{item.term_id}}">{{item.name}}</option>
							{% endfor %}
						</select>
					</td>
				</tr>

				<tr>
					<th>Country</th>
					<td>
						<select style="width:100%" class="select_js" name="countries[]" multiple="multiple">
							{# <option value="">All</option> #}
							{% for key, item in countries %}
								<option value="{{key}}">{{item}}</option>
							{% endfor %}
						</select>
					</td>
				</tr>

                <tr>
					<th>Date From</th>
					<td>
					<input type="date" name="from_date" />
					</td>
				</tr>

                 <tr>
					<th>Date To</th>
					<td>
					<input type="date" name="to_date" />
					</td>
				</tr>



			</tbody>
		</table>
    <input type="hidden" name="action" value="export_incidents">
		<button class="button button-primary button-large" name>Export</button>
        </form>

	</section>
</div>
