edit.html 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. <form id="edit-form" class="form-horizontal" role="form" data-toggle="validator" method="POST" action="">
  2. <div class="form-group">
  3. <label class="control-label col-xs-12 col-sm-2">{:__('User_notice_template')}:</label>
  4. <div class="col-xs-12 col-sm-8">
  5. <input id="c-user_notice_template" class="form-control" name="row[user_notice_template]" type="text" value="{$row.user_notice_template|htmlentities}">
  6. </div>
  7. </div>
  8. <div class="form-group">
  9. <label class="control-label col-xs-12 col-sm-2">{:__('User_order_template')}:</label>
  10. <div class="col-xs-12 col-sm-8">
  11. <input id="c-user_order_template" class="form-control" name="row[user_order_template]" type="text" value="{$row.user_order_template|htmlentities}">
  12. </div>
  13. </div>
  14. <div class="form-group">
  15. <label class="control-label col-xs-12 col-sm-2">{:__('User_sales_template')}:</label>
  16. <div class="col-xs-12 col-sm-8">
  17. <input id="c-user_sales_template" class="form-control" name="row[user_sales_template]" type="text" value="{$row.user_sales_template|htmlentities}">
  18. </div>
  19. </div>
  20. <div class="form-group">
  21. <label class="control-label col-xs-12 col-sm-2">{:__('Skill_order_template')}:</label>
  22. <div class="col-xs-12 col-sm-8">
  23. <input id="c-skill_order_template" class="form-control" name="row[skill_order_template]" type="text" value="{$row.skill_order_template|htmlentities}">
  24. </div>
  25. </div>
  26. <div class="form-group">
  27. <label class="control-label col-xs-12 col-sm-2">{:__('Skill_sales_template')}:</label>
  28. <div class="col-xs-12 col-sm-8">
  29. <input id="c-skill_sales_template" class="form-control" name="row[skill_sales_template]" type="text" value="{$row.skill_sales_template|htmlentities}">
  30. </div>
  31. </div>
  32. <div class="form-group">
  33. <label class="control-label col-xs-12 col-sm-2">{:__('Shop_order_template')}:</label>
  34. <div class="col-xs-12 col-sm-8">
  35. <input id="c-shop_order_template" class="form-control" name="row[shop_order_template]" type="text" value="{$row.shop_order_template|htmlentities}">
  36. </div>
  37. </div>
  38. <div class="form-group">
  39. <label class="control-label col-xs-12 col-sm-2">{:__('Shop_finish_template')}:</label>
  40. <div class="col-xs-12 col-sm-8">
  41. <input id="c-shop_finish_template" class="form-control" name="row[shop_finish_template]" type="text" value="{$row.shop_finish_template|htmlentities}">
  42. </div>
  43. </div>
  44. <div class="form-group">
  45. <label class="control-label col-xs-12 col-sm-2">{:__('Shop_sales_template')}:</label>
  46. <div class="col-xs-12 col-sm-8">
  47. <input id="c-shop_sales_template" class="form-control" name="row[shop_sales_template]" type="text" value="{$row.shop_sales_template|htmlentities}">
  48. </div>
  49. </div>
  50. <div class="form-group layer-footer">
  51. <label class="control-label col-xs-12 col-sm-2"></label>
  52. <div class="col-xs-12 col-sm-8">
  53. <button type="submit" class="btn btn-primary btn-embossed disabled">{:__('OK')}</button>
  54. </div>
  55. </div>
  56. </form>