Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

60 řádky
2.1KB

  1. <div class="page-header">
  2. <h1><?= e($name['name']) ?></h1>
  3. <div class="page-header-actions">
  4. <a class="button button-secondary button-sm"
  5. href="/householder-names/<?= e($name['id']) ?>/edit">Edit</a>
  6. <form method="POST" action="/householder-names/<?= e($name['id']) ?>/delete"
  7. class="inline-form"
  8. onsubmit="return confirm('Delete this name?')">
  9. <?= csrf_field() ?>
  10. <button class="button button-danger button-sm" type="submit">Delete</button>
  11. </form>
  12. <a class="button button-secondary button-sm"
  13. href="/households/<?= e($name['household_id']) ?>">← Household</a>
  14. </div>
  15. </div>
  16. <div class="section-panel">
  17. <dl class="detail-list">
  18. <dt>Household</dt>
  19. <dd>
  20. <a href="/households/<?= e($name['household_id']) ?>">
  21. <?= e($name['household_address']) ?>
  22. </a>
  23. </dd>
  24. <dt>Territory</dt>
  25. <dd>
  26. <a href="/territories/<?= e($name['territory_id']) ?>">
  27. <?= e($name['territory_name']) ?>
  28. </a>
  29. </dd>
  30. <dt>Letter Returned</dt>
  31. <dd>
  32. <?php if ($name['letter_returned']): ?>
  33. <span class="badge badge-success">Yes</span>
  34. <?php if ($name['return_date']): ?>
  35. <span class="text-secondary">(<?= e($name['return_date']) ?>)</span>
  36. <?php endif; ?>
  37. <?php else: ?>
  38. No
  39. <?php endif; ?>
  40. </dd>
  41. <dt>Added</dt>
  42. <dd class="text-secondary"><?= e((string) ($name['created_at'] ?? '')) ?></dd>
  43. </dl>
  44. <div class="form-actions" style="margin-top:1.25rem">
  45. <form method="POST"
  46. action="/householder-names/<?= e($name['id']) ?>/mark-returned"
  47. class="inline-form">
  48. <?= csrf_field() ?>
  49. <button class="button button-secondary" type="submit">
  50. <?= $name['letter_returned'] ? 'Unmark as Returned' : 'Mark Letter Returned' ?>
  51. </button>
  52. </form>
  53. </div>
  54. </div>

Powered by TurnKey Linux.