You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
668 B
27 lines
668 B
{{define "job_search_results"}}
|
|
<div id="job-results" class="submenu-container">
|
|
{{if .Jobs}}
|
|
<h3>Search Results</h3>
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th>Job Name</th>
|
|
<th>Location</th>
|
|
<th>Status</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{{range .Jobs}}
|
|
<tr>
|
|
<td>{{.Name}}</td>
|
|
<td>{{.Location.Name}} {{.Location.Address}}</td>
|
|
<td>{{.Status}}</td>
|
|
</tr>
|
|
{{end}}
|
|
</tbody>
|
|
</table>
|
|
{{else}}
|
|
<p>No jobs found matching your search criteria.</p>
|
|
{{end}}
|
|
</div>
|
|
{{end}}
|