From 9098fe0aaa2b59a64ee5177b3bd70bd329a914f8 Mon Sep 17 00:00:00 2001 From: Olivier PEREZ <olivier@olivierperez.fr> Date: Sun, 18 Jan 2015 12:14:51 +0100 Subject: [PATCH] Admin: Redorder polls column title, format, author, email, expiration's date, users, id, actions --- tpl/admin/polls.tpl | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/tpl/admin/polls.tpl b/tpl/admin/polls.tpl index 1636b881..30c773df 100644 --- a/tpl/admin/polls.tpl +++ b/tpl/admin/polls.tpl @@ -25,26 +25,25 @@ <table class="table table-bordered"> <tr align="center"> - <th scope="col">{_('Poll ID')}</th> - <th scope="col">{_('Format')}</th> <th scope="col">{_('Title')}</th> + <th scope="col">{_('Format')}</th> <th scope="col">{_('Author')}</th> <th scope="col">{_('Email')}</th> <th scope="col">{_('Expiration\'s date')}</th> <th scope="col">{_('Users')}</th> + <th scope="col">{_('Poll ID')}</th> <th scope="col" colspan="3">{_('Actions')}</th> </tr> {foreach $polls as $poll} <tr align="center"> - <td>{$poll->id|html}</td> + <td>{$poll->title|html}</td> <td> {if $poll->format === 'D'} - <span class="glyphicon glyphicon-calendar" aria-hidden="true"></span><span class="sr-only">{_('Date')}</span> + <span class="glyphicon glyphicon-calendar" aria-hidden="true" title="{_('Date')}"></span><span class="sr-only">{_('Date')}</span> {else} - <span class="glyphicon glyphicon-list-alt" aria-hidden="true"></span><span class="sr-only">{_('Classic')}</span> + <span class="glyphicon glyphicon-list-alt" aria-hidden="true" title="{_('Classic')}"></span><span class="sr-only">{_('Classic')}</span> {/if} </td> - <td>{$poll->title|html}</td> <td>{$poll->admin_name|html}</td> <td>{$poll->admin_mail|html}</td> @@ -54,6 +53,7 @@ <td><span class="text-danger">{strtotime($poll->end_date)|date_format:'d/m/Y'}</span></td> {/if} <td>TODO</td> + <td>{$poll->id|html}</td> <td><a href="{$poll->id|poll_url|html}" class="btn btn-link" title="{_('See the poll')}"><span class="glyphicon glyphicon-eye-open"></span><span class="sr-only">{_('See the poll')}</span></a></td> <td><a href="{$poll->admin_id|poll_url:true|html}" class="btn btn-link" title="{_('Change the poll')}"><span class="glyphicon glyphicon-pencil"></span><span class="sr-only">{_('Change the poll')}</span></a></td> <td><button type="submit" name="delete_poll" value="{$poll->id|html}" class="btn btn-link" title="{_('Remove the poll')}"><span class="glyphicon glyphicon-trash text-danger"></span><span class="sr-only">{_('Remove the poll')}</span></td> -- GitLab