diff options
Diffstat (limited to '')
-rw-r--r-- | admin/template/goto/element_set_global.tpl | 2 | ||||
-rw-r--r-- | admin/template/goto/element_set_unit.tpl | 4 | ||||
-rw-r--r-- | admin/template/goto/history.tpl | 15 | ||||
-rw-r--r-- | admin/template/goto/navigation_bar.tpl | 39 | ||||
-rw-r--r-- | admin/template/goto/rating.tpl | 5 | ||||
-rw-r--r-- | admin/template/goto/user_list.tpl | 2 |
6 files changed, 47 insertions, 20 deletions
diff --git a/admin/template/goto/element_set_global.tpl b/admin/template/goto/element_set_global.tpl index 0dfa11876..cd12410bc 100644 --- a/admin/template/goto/element_set_global.tpl +++ b/admin/template/goto/element_set_global.tpl @@ -37,7 +37,7 @@ <legend>{'Elements'|@translate}</legend> - {if !empty($NAV_BAR)}<div class="navigationBar">{$NAV_BAR}</div>{/if} + {if !empty($navbar) }{include file='navigation_bar.tpl'}{/if} {if !empty($thumbnails)} <ul class="thumbnails"> diff --git a/admin/template/goto/element_set_unit.tpl b/admin/template/goto/element_set_unit.tpl index 14d5a34a5..1c9d99ae2 100644 --- a/admin/template/goto/element_set_unit.tpl +++ b/admin/template/goto/element_set_unit.tpl @@ -24,9 +24,7 @@ </fieldset> -{if !empty($NAV_BAR) } -<div class="navigationBar">{$NAV_BAR}</div> -{/if} +{if !empty($navbar) }{include file='navigation_bar.tpl'}{/if} {if !empty($elements) } <input type="hidden" name="element_ids" value="{$ELEMENT_IDS}" /> diff --git a/admin/template/goto/history.tpl b/admin/template/goto/history.tpl index 3e4bcce6c..9291f4a36 100644 --- a/admin/template/goto/history.tpl +++ b/admin/template/goto/history.tpl @@ -102,13 +102,7 @@ </fieldset> {/if} - -{if !empty($NAV_BAR)} -<div class="navigationBar"> - {$NAV_BAR} -</div> -{/if} - +{if !empty($navbar) }{include file='navigation_bar.tpl'}{/if} <table class="table2" id="detailedStats"> <tr class="throw"> @@ -139,9 +133,4 @@ {/if} </table> - -{if !empty($NAV_BAR)} -<div class="navigationBar"> - {$NAV_BAR} -</div> -{/if} +{if !empty($navbar) }{include file='navigation_bar.tpl'}{/if} diff --git a/admin/template/goto/navigation_bar.tpl b/admin/template/goto/navigation_bar.tpl new file mode 100644 index 000000000..94c8ad05f --- /dev/null +++ b/admin/template/goto/navigation_bar.tpl @@ -0,0 +1,39 @@ +{* $Id: navigation_bar.tpl 3145 2009-02-14 02:24:10Z patdenice $ *} +<div class="navigationBar"> + +{if isset($navbar.URL_FIRST)} +<a href="{$navbar.URL_FIRST}" rel="first">{'first_page'|@translate}</a> +{else} +{'first_page'|@translate} +{/if} +| +{if isset($navbar.URL_PREV)} +<a href="{$navbar.URL_PREV}" rel="prev">{'previous_page'|@translate}</a> +{else} +{'previous_page'|@translate} +{/if} +| +{assign var='prev_page' value=0} +{foreach from=$navbar.pages key=page item=url} + {if $page > $prev_page+1} ... {/if} + {if $page == $navbar.CURRENT_PAGE} + <span class="pageNumberSelected">{$page}</span> + {else} + <a href="{$url}">{$page}</a> + {/if} +{assign var='prev_page' value=$page} +{/foreach} +| +{if isset($navbar.URL_NEXT)} +<a href="{$navbar.URL_NEXT}" rel="next">{'next_page'|@translate}</a> +{else} +{'next_page'|@translate} +{/if} +| +{if isset($navbar.URL_LAST)} +<a href="{$navbar.URL_LAST}" rel="last">{'last_page'|@translate}</a> +{else} +{'last_page'|@translate} +{/if} + +</div>
\ No newline at end of file diff --git a/admin/template/goto/rating.tpl b/admin/template/goto/rating.tpl index c50a26602..0ff212bf5 100644 --- a/admin/template/goto/rating.tpl +++ b/admin/template/goto/rating.tpl @@ -32,7 +32,8 @@ </fieldset> </form> -<div class="navigationBar">{$NAVBAR}</div> +{if !empty($navbar) }{include file='navigation_bar.tpl'}{/if} + <table width="99%"> <tr class="throw"> <td>{'File'|@translate}</td> @@ -64,4 +65,4 @@ {/foreach} {*images*} </table> -<div class="navigationBar">{$NAVBAR}</div> +{if !empty($navbar) }{include file='navigation_bar.tpl'}{/if} diff --git a/admin/template/goto/user_list.tpl b/admin/template/goto/user_list.tpl index aa4e369dc..e6c4373ac 100644 --- a/admin/template/goto/user_list.tpl +++ b/admin/template/goto/user_list.tpl @@ -91,7 +91,7 @@ {/foreach} </table> -<div class="navigationBar">{$NAVBAR}</div> +{if !empty($navbar) }{include file='navigation_bar.tpl'}{/if} {* delete the selected users ? *} <fieldset> |