<h2><%= H(Model.Title) %></h2>
<%= HTML.FormTag("KitLabels", "EditPost", empty, empty) %>
	<%= HTML.Hidden("nonce", HTMLSecurity.GetAntiCSRFToken("KitLabelsEditForm")) %>
	<%= HTML.Hidden("Id", Model.KitLabels.ID) %>
	<div class="row">
		<div class="col-md-4">
			<div class="form-group">
				<label for="KitId">KitId</label>
				<%= HTML.TextboxExt("KitId", Model.KitLabels.KitId, Array("class", "form-control")) %>
			</div>
		</div>
	</div>
	<div class="row">
		<div class="col-md-4">
			<div class="form-group">
				<label for="OutboundSerial">OutboundSerial</label>
				<%= HTML.TextboxExt("OutboundSerial", Model.KitLabels.OutboundSerial, Array("class", "form-control")) %>
			</div>
		</div>
	</div>
	<div class="row">
		<div class="col-md-4">
			<div class="form-group">
				<label for="InBoundSerial">InBoundSerial</label>
				<%= HTML.TextboxExt("InBoundSerial", Model.KitLabels.InBoundSerial, Array("class", "form-control")) %>
			</div>
		</div>
	</div>
	<div class="row">
		<div class="col-md-4">
			<div class="form-group">
				<label for="OutboundIMB">OutboundIMB</label>
				<%= HTML.TextboxExt("OutboundIMB", Model.KitLabels.OutboundIMB, Array("class", "form-control")) %>
			</div>
		</div>
	</div>
	<div class="row">
		<div class="col-md-4">
			<div class="form-group">
				<label for="InBoundIMB">InBoundIMB</label>
				<%= HTML.TextboxExt("InBoundIMB", Model.KitLabels.InBoundIMB, Array("class", "form-control")) %>
			</div>
		</div>
	</div>
	<div class="row">
		<div class="col-md-4">
			<div class="form-group">
				<label for="OutboundIMBDigits">OutboundIMBDigits</label>
				<%= HTML.TextboxExt("OutboundIMBDigits", Model.KitLabels.OutboundIMBDigits, Array("class", "form-control")) %>
			</div>
		</div>
	</div>
	<div class="row">
		<div class="col-md-4">
			<div class="form-group">
				<label for="InBoundIMBDigits">InBoundIMBDigits</label>
				<%= HTML.TextboxExt("InBoundIMBDigits", Model.KitLabels.InBoundIMBDigits, Array("class", "form-control")) %>
			</div>
		</div>
	</div>
		<div class="row">
		<div class="col-md-4">
			<div class="form-group">
				<label for="OutboundIMBPNG">OutboundIMBPNG</label>
				<%= HTML.TextboxExt("OutboundIMBPNG", Model.KitLabels.OutboundIMBPNG, Array("class", "form-control")) %>
			</div>
		</div>
	</div>
		<div class="row">
		<div class="col-md-4">
			<div class="form-group">
				<label for="INBOUNDIMBPNGs">INBOUNDIMBPNG</label>
				<%= HTML.TextboxExt("INBOUNDIMBPNG", Model.KitLabels.INBOUNDIMBPNG, Array("class", "form-control")) %>
			</div>
		</div>
	</div>
<hr />
<div class="form-group">
	<% = HTML.Button("submit", "<i class='glyphicon glyphicon-ok'></i> Save", "btn-primary") %>
	   			&nbsp;&nbsp;
				<%= HTML.LinkToExt("<i class='glyphicon glyphicon-remove'></i> Delete", "KitLabels", "Delete", Array("id", Model.KitLabels.ID), Array("class", "btn btn-danger")) %>
				&nbsp;&nbsp;
				<%= HTML.LinkToExt("Cancel", "KitLabels", "Index", empty, Array("class", "btn btn-default")) %>
</div>
</form>