mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-23 23:58:31 -05:00
Fix rendering of email logs rows. Needed thead around the first row.
This commit is contained in:
parent
236356bfe2
commit
b194bafcc8
1 changed files with 9 additions and 7 deletions
|
@ -1,11 +1,13 @@
|
|||
<table class='table'>
|
||||
<tr>
|
||||
<th>{{i18n admin.email.sent_at}}</th>
|
||||
<th>{{i18n admin.email.user}}</th>
|
||||
<th>{{i18n admin.email.to_address}}</th>
|
||||
<th>{{i18n admin.email.email_type}}</th>
|
||||
<th>{{i18n admin.email.reply_key}}</th>
|
||||
</tr>
|
||||
<thead>
|
||||
<tr>
|
||||
<th>{{i18n admin.email.sent_at}}</th>
|
||||
<th>{{i18n admin.email.user}}</th>
|
||||
<th>{{i18n admin.email.to_address}}</th>
|
||||
<th>{{i18n admin.email.email_type}}</th>
|
||||
<th>{{i18n admin.email.reply_key}}</th>
|
||||
</tr>
|
||||
</thead>
|
||||
|
||||
{{#if model.length}}
|
||||
{{#group}}
|
||||
|
|
Loading…
Reference in a new issue