{% extends 'ui/base.html' %} {% block title %}Import Check Point | BioQueue{% endblock %} {% block content %}
{% for protocol in protocol_list %} {% endfor %}
ID Protocol
{{ protocol.id }} {{ protocol.name }}
{% endblock %} {% block script %} function showML(h, t){ $.get("{% url 'ui:fetch_learning' %}", {hash: h, type: t}, function(result){ $('#ml .modal-body').html(result.info); $('#ml').modal(); }); } function showSteps(recId){ $.get("{% url 'ui:show_learning_steps' %}", {parent: recId}, function(result){ if ($('#stepsContainer').css("display") != 'none'){ $('#stepsContainer').hide("fast"); } $('#stepsContainer').html(result.info); $('#stepsContainer').show("slow"); }); } {% endblock %}