Browse Source

Update user-draft.html.php

pull/416/head
Dan 5 years ago
committed by GitHub
parent
commit
925e2d6d0e
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 11 additions and 1 deletions
  1. +11
    -1
      system/admin/views/user-draft.html.php

+ 11
- 1
system/admin/views/user-draft.html.php View File

@ -28,6 +28,16 @@
</tr> </tr>
<?php endforeach; ?> <?php endforeach; ?>
</table> </table>
<?php if (!empty($pagination['prev']) || !empty($pagination['next'])): ?>
<div class="pager">
<?php if (!empty($pagination['prev'])): ?>
<span><a href="?page=<?php echo $page - 1 ?>" class="pagination-arrow newer" rel="prev">Newer</a></span>
<?php endif; ?>
<?php if (!empty($pagination['next'])): ?>
<span><a href="?page=<?php echo $page + 1 ?>" class="pagination-arrow older" rel="next">Older</a></span>
<?php endif; ?>
</div>
<?php endif; ?>
<?php } else { <?php } else {
echo i18n('No_draft_found') . '!'; echo i18n('No_draft_found') . '!';
} ?>
} ?>

Loading…
Cancel
Save