thirdparty/google_appengine/google/appengine/ext/admin/templates/pager.html
author Madhusudan C.S. <madhusudancs@gmail.com>
Mon, 08 Jun 2009 08:48:24 +0200
changeset 2407 e23fce20ad3a
parent 109 620f9b141567
permissions -rw-r--r--
Changed GHOP module imports to be consistent with rest of Melange code. The imports used the from <module-path> import <module> as <local_module_name> syntax. These kinds of imports are changed to import <module_path.module_name> syntax to be consistent with the Melange code base. Reviewed by: Lennard de Rijk

{% ifnotequal prev_start -1 %}<a href="{{ start_base_url }}&amp;start={{ prev_start }}">&lsaquo; Previous</a>{% endifnotequal %}
&nbsp;
{% for page in pages %}
  <a {% ifequal page.number current_page %} class="ae-page-selected ae-page-number" {% endifequal %}
    href="{{ start_base_url }}&amp;start={{ page.start }}">{{ page.number }}</a> 
{% endfor %}
&nbsp; 
{% ifnotequal next_start -1 %}<a href="{{ start_base_url }}&amp;start={{ next_start }}">Next &rsaquo;</a>{% endifnotequal %}