{% if args and ("embedded" not in args) %}
{% if ("algType" in args) and (args["algType"] == 'numeric') %}
{% include 'numeric_dataset.html' %}
{% elif ("algType" in args) and ((args["algType"] == 'text') or (args["algType"] == 'text2')) %}
{% include 'text_dataset.html' %}
{% elif ("algType" in args) and ((args["algType"] == 'help')) %}
{% include 'help.html' %}
{% endif %}
{% endif %}