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

Design Library

Browse, search, and manage your saved protocol designs.

{% for script in scripts %} {% endfor %}
Workflow Name {% if current_sort_by == 'name' %}{% endif %} Deck Configuration {% if current_sort_by == 'deck' %}{% endif %} Description Status {% if current_sort_by == 'status' %}{% endif %} Created {% if current_sort_by == 'created' %}{% endif %} Last Modified {% if current_sort_by == 'modified' %}{% endif %} Author {% if current_sort_by == 'author' %}{% endif %} Actions
{{ script.deck }} {{ script.description or '-' }} {% if script.status == 'active' or script.status == 'finalized' or script.status == 'ready' %} {{ script.status }} {% else %} {{ script.status or 'draft' }} {% endif %} {{ script.time_created }} {{ script.last_modified }} {{ script.author or 'System' }}
Open {% set username = current_user.get_id() %} {% if username == 'admin' or username == script.author %} {% else %} {% endif %}
{% endblock %}