Skip to content

Commit 8bbfe3c

Browse files
committed
ExportODT: cosmetic
1 parent fbbb785 commit 8bbfe3c

File tree

1 file changed

+44
-39
lines changed

1 file changed

+44
-39
lines changed

tpl/export_odt.html

+44-39
Original file line numberDiff line numberDiff line change
@@ -164,49 +164,54 @@
164164
</td>
165165
</tr>
166166
<tr>
167-
<th valign="top">{t}Categories{/t}</th>
167+
<th valign="top">{t}Filters{/t}</th>
168168
<td valign="top">: </td>
169169
<td>
170-
<select id="categories" name="categories" multiple="multiple" size="5">
171-
{foreach from=$categories key=id item=i}
172-
<option {if $i.selected}selected="selected"{/if} value="{$i.id}">{$i.name}</option>
173-
{/foreach}
174-
</select>
175-
</td>
176-
</tr>
177-
<tr>
178-
<th valign="top">{t}Status{/t}</th>
179-
<td valign="top">: </td>
180-
<td>
181-
<select id="statuses" name="statuses" multiple="multiple" size="5">
182-
{foreach from=$statuses key=id item=i}
183-
<option {if $i.selected}selected="selected"{/if} value="{$i.id}">{$i.name}</option>
184-
{/foreach}
185-
</select>
186-
</td>
187-
</tr>
188-
<tr>
189-
<th valign="top">{t}Reported by{/t}</th>
190-
<td valign="top">: </td>
191-
<td>
192-
<select id="reporters" name="reporters" multiple="multiple" size="5">
193-
{foreach from=$reporters key=id item=i}
194-
<option {if $i.selected}selected="selected"{/if} value="{$i.id}">{$i.name}</option>
195-
{/foreach}
196-
</select>
197-
</td>
198-
</tr>
199-
<tr>
200-
<th valign="top">{t}Assigned to{/t}</th>
201-
<td valign="top">: </td>
202-
<td>
203-
<select id="handlers" name="handlers" multiple="multiple" size="5">
204-
{foreach from=$handlers key=id item=i}
205-
<option {if $i.selected}selected="selected"{/if} value="{$i.id}">{$i.name}</option>
206-
{/foreach}
207-
</select>
170+
<table>
171+
<thead>
172+
<tr>
173+
<th valign="top">{t}Categories{/t}</th>
174+
<th valign="top">{t}Status{/t}</th>
175+
<th valign="top">{t}Reported by{/t}</th>
176+
<th valign="top">{t}Assigned to{/t}</th>
177+
</tr>
178+
</thead>
179+
<tbody>
180+
<tr>
181+
<td>
182+
<select id="categories" name="categories" multiple="multiple" size="5">
183+
{foreach from=$categories key=id item=i}
184+
<option {if $i.selected}selected="selected"{/if} value="{$i.id}">{$i.name}</option>
185+
{/foreach}
186+
</select>
187+
</td>
188+
<td>
189+
<select id="statuses" name="statuses" multiple="multiple" size="5">
190+
{foreach from=$statuses key=id item=i}
191+
<option {if $i.selected}selected="selected"{/if} value="{$i.id}">{$i.name}</option>
192+
{/foreach}
193+
</select>
194+
</td>
195+
<td>
196+
<select id="reporters" name="reporters" multiple="multiple" size="5">
197+
{foreach from=$reporters key=id item=i}
198+
<option {if $i.selected}selected="selected"{/if} value="{$i.id}">{$i.name}</option>
199+
{/foreach}
200+
</select>
201+
</td>
202+
<td>
203+
<select id="handlers" name="handlers" multiple="multiple" size="5">
204+
{foreach from=$handlers key=id item=i}
205+
<option {if $i.selected}selected="selected"{/if} value="{$i.id}">{$i.name}</option>
206+
{/foreach}
207+
</select>
208+
</td>
209+
</tr>
210+
</tbody>
211+
</table>
208212
</td>
209213
</tr>
214+
210215
<tr>
211216
<th valign="top">{t}ODT Template{/t}</th>
212217
<td valign="top">: </td>

0 commit comments

Comments
 (0)