{% extends 'analysispage.html' %} {% block title %}Add Gene List{% endblock %} {% block links %} Project: {{ project }} {% endblock %} {% block desc %} This pages allows you to add or remove existing gene lists to/from this project. To create or edit gene lists, please use these links:

Manage My Gene Lists
Create Gene List...
{% endblock %} {% block innercontent %}

My Gene Lists

{% if error %}
{{ error }}
{% endif %}
{% csrf_token %} {% for gene_list in my_lists %} {% empty %}

No gene lists

{% endfor %}

Public Gene Lists

{% csrf_token %} {% for public_list in public_lists %} {% empty %}

No public gene lists

{% endfor %}
{% endblock %}