Below is the file 'templates/databases.html' from this revision. You can also download the file.

#extends base

#def body
<p>
ViewMTN has been configured to serve the following databases.
You are currently accessing the database <strong>$(dbname)</strong>.
Change to a database by accessing the corresponding link.
</p>

<table class="pretty">
<tr><th>Database</th><th>Description</th></tr>
#for db in $databases
<tr>
  <td valign="top">
      <a href="$nodb_join($db.name)/">$db.name</a>
  </td>
  <td>
    $db.description
  </td>
</tr>
#end for
</table>

#end def