17 lines
421 B
HTML
17 lines
421 B
HTML
{{ define "content" }}
|
|
<h2>Manual Admin Triggers</h2>
|
|
|
|
<p>This page lets you manually run backend processes like result matching.</p>
|
|
|
|
<form method="POST" action="/admin/triggers">
|
|
{{ .CSRFField }}
|
|
<button class="bg-blue-500 text-white px-4 py-2 rounded hover:bg-blue-600">
|
|
Run Ticket Matching
|
|
</button>
|
|
</form>
|
|
|
|
{{ if .Flash }}
|
|
<p class="mt-4 text-green-600 font-medium">{{ .Flash }}</p>
|
|
{{ end }}
|
|
{{ end }}
|