{% extends 'base.html' %} {% block title %}IvoryOS | Dashboard{% endblock %} {% block body %}

Welcome back, {{ current_user.get_id() }}!

Manage and automate your liquid handling and experimental workflows.

{% if off_line %} Simulation Mode (Offline) {% else %} System Connected (Online) {% endif %} v{{ version }}
Recently Modified Designs
View Full Library
{% if recent_scripts %}
{% for script in recent_scripts %} {% endfor %}
Workflow Name Deck Configuration Last Modified Actions
{{ script.name }}
{{ script.author or 'System' }}
{{ script.deck }} {{ script.last_modified if script.last_modified else 'N/A' }} Open in Editor
{% else %}
No designs found in the database

Get started by building a new liquid handling script using the interactive block canvas.

Create New Design
{% endif %}
{% endblock %}