Display owners for bots on the admin page.

(imported from commit d1a80ab8f784ab7e7249cc020b1980bd45434abd)
This commit is contained in:
Tim Abbott 2013-11-16 10:37:07 -05:00
parent b55e406f93
commit 9e8346f6d7
2 changed files with 6 additions and 0 deletions

View File

@ -6,6 +6,11 @@
<td>
<span class="email">{{email}}</span>
</td>
{{#if is_bot}}
<td>
<span class="email">{{bot_owner}}</span>
</td>
{{/if}}
<td>
{{#if is_active}}
<button class="btn deactivate btn-danger">

View File

@ -17,6 +17,7 @@
<tbody id="admin_bots_table" class="admin_user_table">
<th>Name</th>
<th>Email</th>
<th>Owner</th>
<th>Actions</th>
</tbody>
</table>