{% extends "pages/menu.html" %}
{% block css %}
{% load staticfiles %}
{% endblock %}
{% block content %}
My Graphs
{% for cooc in coocs %}
-
Graph created at {{cooc.date}}
{% for key, value in coocs_count.items %}
{% if key == cooc.id %}
{% if value > 0 %}
with {{ value }} nodes :
- Start period: {% if not cooc.hyperdata.start %} begin of corpus {% else %} {{cooc.hyperdata.start}} {% endif %}
- End period: {% if not cooc.hyperdata.end %} end of corpus {% else %} {{cooc.hyperdata.end}} {% endif %}
- Distances:
-
Conditional with bridgeness
5
or 10
or 20
-
Distributional with bridgeness
5
or 10
or 20
{% else %}
Processing (wait and reload the page)
{% endif %}
{% endif %}
{% endfor %}
{% endfor %}
{% endblock %}