create_template.html 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. <div class="modal" id="create-template">
  2. <div class="modal-dialog">
  3. <div class="modal-content">
  4. <div class="modal-header bg-primary">
  5. <button type="button" class="close" data-dismiss="modal" aria-hidden="true">&times;</button>
  6. <div class="modal-title">{{ t('template.modal_label.Create/Edit Template Page') }}</div>
  7. </div>
  8. <div class="modal-body">
  9. <div class="form-group">
  10. <label class="mb-4">{{ t('template.modal_label.Create template under', page.path ) }}</label>
  11. <div class="row">
  12. <div class="col-sm-6">
  13. <div class="panel panel-default">
  14. <div class="panel-heading">{{ t('template.local.label') }}</div>
  15. <div class="panel-body">
  16. <p class="text-center"><code>__template</code></p>
  17. <p class="help-block text-center"><small>{{ t('template.local.desc') }}</small></p>
  18. </div>
  19. <div class="panel-footer text-center">
  20. {% if localTemplateExists %}
  21. <a href="{{ page.path }}/__template#edit-form"><button class="btn btn-sm btn-primary">{{ t('Edit') }}</button></a>
  22. {% else %}
  23. <a href="{{ page.path }}/__template#edit-form"><button class="btn btn-sm btn-primary">{{ t('Create') }}</button></a>
  24. {% endif %}
  25. </div>
  26. </div>
  27. </div>
  28. <div class="col-sm-6">
  29. <div class="panel panel-default">
  30. <div class="panel-heading">{{ t('template.global.label') }}</div>
  31. <div class="panel-body">
  32. <p class="text-center"><code>_template</code></p>
  33. <p class="help-block text-center"><small>{{ t('template.global.desc') }}</small></p>
  34. </div>
  35. <div class="panel-footer text-center">
  36. {% if globalTemplateExists %}
  37. <a href="{{ page.path }}/_template#edit-form"><button class="btn btn-sm btn-primary">{{ t('Edit') }}</button></a>
  38. {% else %}
  39. <a href="{{ page.path }}/_template#edit-form"><button class="btn btn-sm btn-primary">{{ t('Create') }}</button></a>
  40. {% endif %}
  41. </div>
  42. </div>
  43. </div>
  44. </div>
  45. </div>
  46. </div>
  47. </div><!-- /.modal-content -->
  48. </div><!-- /.modal-dialog -->
  49. </div><!-- /.modal -->