Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

32 wiersze
1.0KB

  1. <h2><%= H(Model.Title) %> For <%=H(Model.Jurisdiction.Name) %> JCODE: <%= H(Model.JCODE) %> </h2>
  2. <%= HTML.FormTag("Kit", "CreatePost", empty, empty) %>
  3. <%= HTML.Hidden("nonce", HTMLSecurity.GetAntiCSRFToken("KitCreateForm")) %>
  4. <%= HTML.Hidden("Jcode", Model.Jcode) %>
  5. <hr />
  6. <div class="form-group">
  7. <div class="row">
  8. <div class="col-md-4">
  9. <div class="form-group">
  10. <label for="JobNumber">JobNumber</label>
  11. <%= HTML.TextboxExt("JobNumber", Model.JobNumber, Array("class", "form-control")) %>
  12. </div>
  13. </div>
  14. </div>
  15. <div class="row">
  16. <div class="col-md-4">
  17. <div class="form-group">
  18. <label for="Amount">Amount of Labels</label>
  19. <%= HTML.TextboxExt("Amount", Model.Amount, Array("class", "form-control")) %>
  20. </div>
  21. </div>
  22. </div>
  23. <p></p>
  24. <%= HTML.Button("submit", "<i class='glyphicon glyphicon-ok'></i> Create", "btn-primary") %>
  25. &nbsp;&nbsp;
  26. <%= HTML.LinkToExt("<i class='glyphicon glyphicon-remove'></i> Cancel", "Kit", "Index", empty, Array("class", "btn btn-default")) %>
  27. </div>
  28. </form>

Powered by TurnKey Linux.