diff options
author | navanchauhan <navanchauhan@gmail.com> | 2022-10-17 00:06:30 -0600 |
---|---|---|
committer | navanchauhan <navanchauhan@gmail.com> | 2022-10-17 00:06:30 -0600 |
commit | f6fcfa97cad2b8bd33f6003fdfbcf4ca5d04375f (patch) | |
tree | 8ef881c03498f77da22b439f168e23fd642dc98d /templates/results.gtpl | |
parent | 652115908a85013264faf9041f1e63d06d52e50e (diff) |
shifted templates
Diffstat (limited to 'templates/results.gtpl')
-rw-r--r-- | templates/results.gtpl | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/templates/results.gtpl b/templates/results.gtpl new file mode 100644 index 0000000..151a7d3 --- /dev/null +++ b/templates/results.gtpl @@ -0,0 +1,36 @@ +<!DOCTYPE html> +<html> +<body> +<h1>Search Results</h1> +<p>Showing results for <b>{{.OriginalQuery.Query}}</b></p> +<p>Go <a href="/">home</a></p> +<p>Showing {{.NumResults}} of {{.TotalResults}}</p> + <table border="1"> + <tr> + <th>510(k) Number</th> + <th>Title</th> + <th>Applicant</th> + <th>Hit Details</th> + <th>Submission Date</th> + <th>Predicates</th> + </tr> + {{ range .SearchResults }} + <tr> + <td><a href="https://www.accessdata.fda.gov/scripts/cdrh/cfdocs/cfPMN/pmn.cfm?ID={{.id}}">{{ .id }}</a></td> + <td>{{ .title }}</td> + <td>{{ .applicant }}</td> + <td>{{unescapeHTML ._formatted.full_text}}</td> + <td>{{ .submission_date }}</td> + <td>{{ range .predicates}} + <a href="https://www.accessdata.fda.gov/scripts/cdrh/cfdocs/cfPMN/pmn.cfm?ID={{.}}">{{ . }}</a>, + {{ end }} + </td> + </tr> + {{ end }} + </table> + {{ if .MoreResults }} + <a href="/classic/search?query={{.OriginalQuery.Query}}&offset={{.LastOffset}}"> <p>Previous Page</p></a> + <a href="/classic/search?query={{.OriginalQuery.Query}}&offset={{.Offset}}"> <p>Next Page</p></a> + {{ end }} +</body> +</html>
\ No newline at end of file |