## -*- coding: utf-8 -*-
<%inherit file="base.html"/>
<%def name="page_head()">
%if not q:
%endif
%def>
<%def name="title()">
${_("Updates for Ubuntu ")}${updates_release}\
% if category:
(${category.name})
% endif
%def>
<%def name="body()">
% if page == 1:
<%include file="how_to_install.html"/>
% endif
% if page > 2:
% endif
% if page > 1:
% endif
% if len(applications_list) == 0:
No packages available for the selected criteria.
% endif
% if page_count > 1:
<%
paging_start = page - 10
paging_end = page + 10
if paging_start < 1:
paging_start = 1
if paging_end > page_count + 1:
paging_end = page_count + 1
%>
% for n in range(paging_start, paging_end):
${n}
% endfor
% endif
% if page < page_count - 1:
% endif
% if page < page_count:
% endif