<h2><%= H(Model.Title) %> For <%=H(Model.Jurisdiction.Name) %> JCODE: <%= H(Model.JCODE) %> </h2>

<%= HTML.FormTag("Kit", "CreatePost", empty, empty) %>
<%= HTML.Hidden("nonce", HTMLSecurity.GetAntiCSRFToken("KitCreateForm")) %>
<%= HTML.Hidden("Jcode", Model.Jcode) %>
<%= HTML.Hidden("JobType", "Labels") %>
<hr />

<div class="form-group">
	<div class="row">
		<div class="col-md-4">
			<div class="form-group">
				<label for="JobNumber">JobNumber</label>
				<%= HTML.TextboxExt("JobNumber", Model.JobNumber, Array("class", "form-control")) %>
			</div>
		</div>
	</div>
	<div class="row">
		<div class="col-md-4">
			<div class="form-group">
				<label for="Amount">Amount of Labels</label>
				<%= HTML.TextboxExt("Amount", Model.Amount, Array("class", "form-control")) %>
			</div>
		</div>
	</div>
<p></p>
    <%= HTML.Button("submit", "<i class='glyphicon glyphicon-ok'></i> Create", "btn-primary") %>
    &nbsp;&nbsp;
    <%= HTML.LinkToExt("<i class='glyphicon glyphicon-remove'></i> Cancel", "Kit", "Index", empty, Array("class", "btn btn-default")) %>
</div>

</form>