25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 lines
1.2KB

  1. <section class="content-stack" x-data="jobTable()">
  2. <div class="page-toolbar">
  3. <div class="section-heading">
  4. <h1><?= e($model->title) ?></h1>
  5. <p>Manage jobs across all campaigns.</p>
  6. </div>
  7. <a class="button button-primary" href="/jobs/create">+ New Job</a>
  8. </div>
  9. <?php if ($model->saved): ?>
  10. <div class="alert alert-success" x-data="{ open: true }" x-show="open" x-transition.opacity x-init="setTimeout(() => open = false, 3500)">
  11. Job saved successfully.
  12. </div>
  13. <?php endif; ?>
  14. <?php if ($model->deleted): ?>
  15. <div class="alert alert-success" x-data="{ open: true }" x-show="open" x-transition.opacity x-init="setTimeout(() => open = false, 3500)">
  16. Job deleted.
  17. </div>
  18. <?php endif; ?>
  19. <section class="section-panel">
  20. <div class="panel-header">
  21. <div>
  22. <h2>Job Directory</h2>
  23. <p>All jobs with their campaign and job type.</p>
  24. </div>
  25. <button class="button button-secondary" type="button" x-on:click="reloadTable()">Refresh</button>
  26. </div>
  27. <div id="job-table" class="tabulator-host"></div>
  28. </section>
  29. </section>

Powered by TurnKey Linux.