{% extends "planarian/base.html" %} {% load i18n home_tags scanner_tags %} {% block content %}
🔬 {% trans "Configurations d'expériences" %}
{% for message in messages %}

{{ message }}

{% endfor %}
🔍
{% if configs %}

{{ configs|length }} {% trans "configuration(s)" %}

{% for cfg in configs %} {% endfor %}
{% trans "Expérience" %} {% trans "Puits" %} {% trans "px/mm" %} {% trans "FPS" %} {% trans "Seuils (mm/s)" %} {% trans "Comportements" %} {% trans "Créé le" %} {% trans "Actions" %}
{{ cfg.experiment }} {% if cfg.description %}
{{ cfg.description|truncatechars:40 }} {% endif %}
{{ cfg.well }} {{ cfg.px_per_mm }} {{ cfg.fps }} < {{ cfg.thresh_immobile }} < {{ cfg.thresh_mobile }} {% if cfg.thigmotaxis_wall_dist_mm > 0 %} 🫧 {% endif %} {% if cfg.photo_mode != 'none' and cfg.photo_strength > 0 %} 💡 {% endif %} {% if cfg.chemo_strength > 0 %} 🍖 {% endif %} {% if cfg.avoid_radius_mm > 0 or cfg.aggreg_radius_mm > 0 %} 🔀 {% endif %} {{ cfg.created_at|date:"d/m/Y H:i" }} 📥
{% else %}

🔬

{% trans "Aucune configuration pour l'instant." %}

{% trans "Créez une première configuration ou importez un fichier CSV." %}

➕ {% trans "Nouvelle configuration" %} 📂 {% trans "Importer CSV" %}
{% endif %}

🗑 {% trans "Confirmer la suppression" %}

{% csrf_token %}
{% endblock %}