Advertisement
Guest User

developr knockout

a guest
Mar 15th, 2013
33
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.61 KB | None | 0 0
  1. <div id="modal-create" data-bind="with: currentItem">
  2. <div class="twelve-columns-tablet">
  3.  
  4. <h3 class="thin underline">Timeline Item</h3>
  5. <p class="block-label button-height">
  6. <label for="Title" class="label">@Resources.Core.General.LabelStrings.Title</label>
  7. <input type="text" name="block-label-1" id="Title" class="input full-width" data-bind="value: title" value="">
  8. </p>
  9. <p class="block-label button-height">
  10. <label for="Name" class="label">@Resources.Core.General.LabelStrings.Keywords</label>
  11. <input type="text" name="block-label-2" id="Name" class="input full-width" data-bind="value: keywords" value="">
  12. </p>
  13. <p class="block-label button-height">
  14. <label for="Desc" class="label">@Resources.Core.General.LabelStrings.Description</label>
  15. <input type="text" name="block-label-2" id="Desc" class="input full-width" data-bind="value: description" value="">
  16. </p>
  17. <p class="block-label button-height">
  18. <label for="Credit" class="label">@Resources.Core.General.LabelStrings.Credits</label>
  19. <input type="text" name="block-label-5" id="Credit" data-bind="value: credit" class="input full-width" value="">
  20. </p>
  21. <p class="block-label button-height">
  22. <label for="Caption" class="label">@Resources.Core.General.LabelStrings.Caption</label>
  23. <input type="text" name="block-label-5" id="Caption" data-bind="value: caption" class="input full-width" value="">
  24. </p>
  25. <p class="block-label button-height">
  26. <label for="StartDate" class="label">@Resources.Core.General.LabelStrings.StartDate</label>
  27. <span class="input">
  28. <span class="icon-calendar"></span>
  29. <input type="text" name="StartDate" id="StartDate" data-bind="value: startDate" class="input-unstyled datepicker" value="">
  30. </span>
  31. </p>
  32. <p class="block-label button-height">
  33. <label for="content" class="label">@Resources.Core.General.LabelStrings.Content</label>
  34. <textarea name="content" class="tinymce" style="width: 100%" data-bind="tinymce: content"></textarea>
  35. </p>
  36. <p class="block-label button-height">
  37. <label for="Active">@Resources.Core.General.LabelStrings.IsPublished</label>
  38. <input type="checkbox" id="Active" data-bind="checked: isActive" class="switch blue-active" data-checkable-options='{"textOn":"@Resources.Core.General.LabelStrings.Yes","textOff":"@Resources.Core.General.LabelStrings.No"}'>
  39. </p>
  40. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement