%inherit file="/base.mako"/>
<%def name="title()">Workflow home%def>
%if message:
<%
try:
messagetype
except:
messagetype = "done"
%>
${message}
%endif
Your workflows
%if workflows:
%for i, workflow in enumerate( workflows ):
${h.to_unicode( workflow.name )}
|
${len(workflow.latest_workflow.steps)} |
## ${str(workflow.update_time)[:19]} |
%endfor
%else:
You have no workflows.
%endif
Workflows shared with you by others
%if shared_by_others:
%for i, association in enumerate( shared_by_others ):
<% workflow = association.stored_workflow %>
${workflow.name}
|
${workflow.user.email} |
${len(workflow.latest_workflow.steps)} |
%endfor
%else:
No workflows have been shared with you.
%endif