[FIX] broken markup in drop db template leading to broken rendering

bzr revid: xmo@openerp.com-20110801105231-xbxxzyx8rbr9wg7a
This commit is contained in:
Xavier Morel 2011-08-01 12:52:31 +02:00
parent c6f9cb5eb6
commit 5ebea36bf9
1 changed files with 9 additions and 7 deletions

View File

@ -130,13 +130,15 @@
<table align="center" class="db_option_table">
<tr>
<td><label for="drop_db">Database:</label></td>
<t t-if="db_list">
<select name="drop_db" autofocus="autofocus">
<t t-foreach="db_list" t-as="db">
<option t-att-value="db"><t t-esc="db"/></option>
</t>
</select>
</t>
<td>
<t t-if="db_list">
<select name="drop_db" autofocus="autofocus">
<t t-foreach="db_list" t-as="db">
<option t-att-value="db"><t t-esc="db"/></option>
</t>
</select>
</t>
</td>
</tr>
<tr>
<td><label for="drop_password">Password:</label></td>