summaryrefslogtreecommitdiff
path: root/cgi/templates/main.html.ep
diff options
context:
space:
mode:
Diffstat (limited to 'cgi/templates/main.html.ep')
-rw-r--r--cgi/templates/main.html.ep22
1 files changed, 20 insertions, 2 deletions
diff --git a/cgi/templates/main.html.ep b/cgi/templates/main.html.ep
index 54b3196..c9ab3cf 100644
--- a/cgi/templates/main.html.ep
+++ b/cgi/templates/main.html.ep
@@ -23,6 +23,16 @@
text-decoration: none;
}
+ div.error {
+ font-size: 150%;
+ font-weight: bold;
+ color: #dd0000;
+ }
+
+ pre {
+ margin-bottom: 2em;
+ }
+
span.optional {
color: #666666;
}
@@ -56,12 +66,20 @@
}
</style>
- <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js"></script>
+ <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js" type="text/javascript"></script>
</head>
<body>
% if ($city and $stop) {
-% if ($frontend eq 'png') {
+% if ($errstr) {
+<div class="error">Error from backend:</div>
+<div>
+<pre>
+%= $errstr
+</pre>
+</div>
+% }
+% elsif ($frontend eq 'png') {
<img src="/<%= $city %>/<%= $stop %>.png?<%= $params %>" alt=""
id="display" height="<%= $height * 4 %>" width="<%= $width * 4 %>"/>
% }