25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

55 satır
2.3KB

  1. <div class="page-header">
  2. <h1>Export Territories</h1>
  3. <a class="button button-secondary button-sm" href="/territories">← Territories</a>
  4. </div>
  5. <div class="section-panel">
  6. <div class="panel-header">
  7. <h2>Select Territories to Export</h2>
  8. <p>Each selected territory will be exported as an XLSX workbook (one sheet per street, split by even/odd house numbers) and a PDF. All files are packaged in a ZIP archive.</p>
  9. </div>
  10. <?php if (empty($territories)): ?>
  11. <div class="empty-state">
  12. <p>No territories found. <a href="/territories/new">Create a territory</a> first.</p>
  13. </div>
  14. <?php else: ?>
  15. <form method="POST" action="/export">
  16. <?= csrf_field() ?>
  17. <div style="margin-bottom:1rem">
  18. <button type="button" class="button button-secondary button-sm"
  19. onclick="document.querySelectorAll('.territory-check').forEach(cb => cb.checked = true)">
  20. Select All
  21. </button>
  22. <button type="button" class="button button-secondary button-sm"
  23. onclick="document.querySelectorAll('.territory-check').forEach(cb => cb.checked = false)">
  24. Deselect All
  25. </button>
  26. </div>
  27. <div class="territory-checklist">
  28. <?php foreach ($territories as $t): ?>
  29. <label class="checkbox-label territory-item">
  30. <input type="checkbox" class="territory-check"
  31. name="territory_ids[]"
  32. value="<?= e($t['id']) ?>">
  33. <?= e($t['name']) ?>
  34. <?php if ($t['description']): ?>
  35. <span class="text-secondary" style="font-size:0.85rem">
  36. — <?= e((string) ($t['description'] ?? '')) ?>
  37. </span>
  38. <?php endif; ?>
  39. </label>
  40. <?php endforeach; ?>
  41. </div>
  42. <div class="form-actions" style="margin-top:1.5rem">
  43. <button class="button button-primary" type="submit">
  44. Download ZIP
  45. </button>
  46. </div>
  47. </form>
  48. <?php endif; ?>
  49. </div>

Powered by TurnKey Linux.