We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6629ca3 commit c107f3aCopy full SHA for c107f3a
lib/TZXServer.pm
@@ -76,6 +76,15 @@ any '/search' => sub {
76
}
77
};
78
79
+get '/missing' => sub {
80
+ template 'results', {
81
+ tapes => rset('Tape')
82
+ ->search({ uri => undef })
83
+ ->hri
84
+ ->all_ref,
85
+ }
86
+};
87
+
88
get '/login' => sub {
89
template 'login.tx';
90
views/layouts/main.tx
@@ -19,6 +19,7 @@
19
20
<p>
21
<a href="/">Home</a> |
22
+ <a href="/missing">Missing</a> |
23
<a href="https://github.com/jbarrett/TZXServer">Source</a>
24
</p>
25
0 commit comments