<%inherit file="/base.mako"/> <%def name="title()">Workflow home %if message: <% try: messagetype except: messagetype = "done" %>

${message}
%endif

Your workflows

%if workflows: ## %for i, workflow in enumerate( workflows ): ## %endfor
Name # of StepsLast Updated
${h.to_unicode( workflow.name )} ${len(workflow.latest_workflow.steps)}${str(workflow.update_time)[:19]}
%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 %> %endfor
Name Owner # of Steps
${workflow.name} ${workflow.user.email} ${len(workflow.latest_workflow.steps)}
%else: No workflows have been shared with you. %endif