35 lines
1.3 KiB
Handlebars
35 lines
1.3 KiB
Handlebars
|
<ol class="breadcrumb">
|
|||
|
<li><a href="/">Home</a></li>
|
|||
|
<li><a href="/lists/">Lists</a></li>
|
|||
|
<li><a href="/lists/view/{{list.id}}">{{list.name}}</a></li>
|
|||
|
<li><a href="/segments/{{list.id}}">Segments</a></li>
|
|||
|
<li><a href="/segments/{{list.id}}/view/{{id}}">{{name}}</a></li>
|
|||
|
<li class="active">Create Segment</li>
|
|||
|
</ol>
|
|||
|
|
|||
|
<h2>{{list.name}} <small>Create Rule</small></h2>
|
|||
|
|
|||
|
<hr>
|
|||
|
|
|||
|
<form class="form-horizontal" method="post" action="/segments/{{list.id}}/rules/{{id}}/next">
|
|||
|
<input type="hidden" name="_csrf" value="{{csrfToken}}">
|
|||
|
|
|||
|
<div class="form-group">
|
|||
|
<label for="column" class="col-sm-2 control-label">Rule</label>
|
|||
|
<div class="col-sm-10">
|
|||
|
<select id="column" class="form-control" name="column" required>
|
|||
|
<option value=""> –– Select ––</option>
|
|||
|
{{#each columns}}
|
|||
|
<option value="{{column}}" {{#if selected}} selected {{/if}}>{{name}}</option>
|
|||
|
{{/each}}
|
|||
|
</select>
|
|||
|
</div>
|
|||
|
</div>
|
|||
|
|
|||
|
<div class="form-group">
|
|||
|
<div class="col-sm-offset-2 col-sm-10">
|
|||
|
<button type="submit" class="btn btn-primary"><span class="glyphicon glyphicon-chevron-right" aria-hidden="true"></span> Next</button>
|
|||
|
</div>
|
|||
|
</div>
|
|||
|
</form>
|