diff options
| author | Tristan Darricau <github@nicofuma.fr> | 2017-04-21 23:54:18 +0200 |
|---|---|---|
| committer | Tristan Darricau <github@nicofuma.fr> | 2017-04-21 23:54:18 +0200 |
| commit | a233f98bbfb95705d1f4f3b61b64b293f6bbacd0 (patch) | |
| tree | 03b92e3d0cd0ea8b237f408f1fa5c102fd24b0de /phpBB/styles/prosilver/template | |
| parent | ff22d54eae45a79f5bc59d2c04f3e02eed8e4981 (diff) | |
| parent | e72f6d42366c6a0cbc128de406474192bc7cd8e2 (diff) | |
| download | forums-a233f98bbfb95705d1f4f3b61b64b293f6bbacd0.tar forums-a233f98bbfb95705d1f4f3b61b64b293f6bbacd0.tar.gz forums-a233f98bbfb95705d1f4f3b61b64b293f6bbacd0.tar.bz2 forums-a233f98bbfb95705d1f4f3b61b64b293f6bbacd0.tar.xz forums-a233f98bbfb95705d1f4f3b61b64b293f6bbacd0.zip | |
Merge pull request #4780 from marc1706/ticket/8116
[ticket/8116] Add pagination for IP tables and post info
* github.com:phpbb/phpbb:
[ticket/8116] Add missing new line
[ticket/8116] Correctly get other users who posted under IP
[ticket/8116] Improve code and add tests for helper functions
[ticket/8116] Add pagination for IP tables on post info
Diffstat (limited to 'phpBB/styles/prosilver/template')
| -rw-r--r-- | phpBB/styles/prosilver/template/mcp_post.html | 30 |
1 files changed, 29 insertions, 1 deletions
diff --git a/phpBB/styles/prosilver/template/mcp_post.html b/phpBB/styles/prosilver/template/mcp_post.html index e5777d206a..5acdcef859 100644 --- a/phpBB/styles/prosilver/template/mcp_post.html +++ b/phpBB/styles/prosilver/template/mcp_post.html @@ -294,6 +294,14 @@ </tbody> </table> + <div class="pagination"> + <!-- INCLUDE pagination.html --> + </div> + </div> + </div> + + <div class="panel"> + <div class="inner"> <table class="table1"> <thead> <tr> @@ -315,7 +323,27 @@ </tbody> </table> - <p><a href="{U_LOOKUP_ALL}#ip">{L_LOOKUP_ALL}</a></p> + <div class="buttons"> + <p><a href="{U_LOOKUP_ALL}#ip">{L_LOOKUP_ALL}</a></p> + </div> + + <div class="pagination"> + <ul> + <!-- BEGIN pagination_ips --> + <!-- IF pagination_ips.S_IS_PREV --> + <li class="previous"><a href="{pagination_ips.PAGE_URL}" rel="prev" role="button">{L_PREVIOUS}</a></li> + <!-- ELSEIF pagination_ips.S_IS_CURRENT --> + <li class="active"><span>{pagination_ips.PAGE_NUMBER}</span></li> + <!-- ELSEIF pagination_ips.S_IS_ELLIPSIS --> + <li class="ellipsis" role="separator"><span>{L_ELLIPSIS}</span></li> + <!-- ELSEIF pagination_ips.S_IS_NEXT --> + <li class="next"><a href="{pagination_ips.PAGE_URL}" rel="next" role="button">{L_NEXT}</a></li> + <!-- ELSE --> + <li><a href="{pagination_ips.PAGE_URL}" role="button">{pagination_ips.PAGE_NUMBER}</a></li> + <!-- ENDIF --> + <!-- END pagination_ips --> + </ul> + </div> </div> </div> |
