diff --git a/tpl/admin/polls.tpl b/tpl/admin/polls.tpl
index 1636b8818ad5a346a488b5edbd44a4fe6720efbd..30c773df504e71b352df5ed7e5c2394f17c86b4e 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>