Its only a small bug, if at all; If there are more than one databases, the table entitled 'Available Databases and Tables' shows only the first db (alphabetically, I guess) in the corresponding HTML - table.
Assume a second model:
# -*- coding: utf-8 -*-
somedb=SQLDB("sqlite://some.db")
somedb.define_table( 'people',
Field('firstname', type='string'),
Field('lastname', type='string'),
Field('birthdate', type='date'),
)
One will get a table, containing the database db (used by auth) only.
'somedb' is shown after the table (after <\table>)
I guess the {{pass}} in the corresponding view 'appadmin.html' is in the
wrong line;
Code starting with 13, followed by 38 to 42.
<h2>{{=T("Available Databases and Tables")}}</h2>
{{if not databases:}}{{=T("No databases in this application")}}{{pass}}
<table>
{{for db in sorted(databases):}}
[...]
</td>
</tr>
{{pass}}
</table>
{{pass}}
the latter lines should probably be:
</td>
</tr>
{{pass}}
{{pass}}
</table>
Find attached the (from my point of view) correct appadmin.html
Version 2.0.9 (2012-09-13 23:51:30) stable
--
<<< text/html; charset=US-ASCII; name=appadmin.html: Unrecognized >>>

