<%inherit file="local:templates.master"/> <%namespace name="POD" file="pod.templates.pod"/> <%def name="title()"> pod :: your dashboard
## LEFT PANEL OF THE DASHBOARD
## WHAT'S HOT PANEL

${_("What's hot!")}

% if len(whats_hot_nodes)<=0:

${_("No hot stuff for today.")}

% else: % endif ## WHAT'S HOT PANEL [END]
## DOCUMENTS REQUIRING ACTIONS PANEL

${_("Actions to do")}

% if len(action_to_do_nodes)<=0:

${_("No document requiring action.")}

% else: % endif ## DOCUMENTS REQUIRING ACTIONS PANEL [END]
## LEFT PANEL OF THE DASHBOARD [END]
## RIGHT PANEL OF THE DASHBOARD

${_("Latest operations")}

% if len(last_modified_nodes)<=0:

${_("No activity found")}

% else: % for node in last_modified_nodes: % endfor
${node.getFormattedDateTime(node.updated_at)} % if node.node_type=='data' or node.parent_id==None: % else: % endif ${node.getTruncatedLabel(35)} % if node.updated_at==node.created_at: ${_("created")} % else: ${_("updated")} % endif
% endif
## RIGHT PANEL OF THE DASHBOARD [END]