1{extends "layout_view.tpl"}
2
3{block name="title"}
4	{title}{$title}{/title}
5{/block}
6
7{block name="content"}
8	<form method="post" action="{service controller=search_manifold action=create_index}">
9		<div class="form-group row">
10			<label for="index" class="col-form-label col-sm-3">{tr}Index{/tr}</label>
11			<div class="col-sm-9">
12				<input type="text" class="form-control" name="index" value="{$index|escape}"/>
13			</div>
14		</div>
15		<div class="form-group row">
16			<label for="type" class="col-form-label col-sm-3">{tr}Type{/tr}</label>
17			<div class="col-sm-9">
18				<input type="text" class="form-control" name="type" value="{$type|escape}"/>
19			</div>
20		</div>
21		<div class="form-group row">
22			<label for="location" class="col-form-label col-sm-3">{tr}Location{/tr}</label>
23			<div class="col-sm-9">
24				<input type="text" class="form-control" name="location" value="{$location|escape}"/>
25				<div class="form-text">
26					{tr}If you want this index to be on a different cluster, connected as a tribe node, you need to enter the primary cluster location here. Indices cannot be created on tribe nodes.{/tr}
27				</div>
28			</div>
29		</div>
30		<div class="form-group row">
31			<div class="col-sm-9 offset-sm-3">
32				<input class="btn btn-primary" type="submit" value="{tr}Create Index{/tr}"/>
33			</div>
34		</div>
35	</form>
36{/block}
37