{% extends 'scipost/base.html' %}
{% block pagetitle %}: graph{% endblock pagetitle %}
{% block headsup %}
{% endblock headsup %}
{% block bodysup %}
Graph
{{ graph }}
{% if graph.private }}
Teams with access:
{% for team in graph.teams_with_access.all %}
{{ team.header_as_li }}
{% endfor %}
{% endif %}
{% if graph.private %}
{% endif %}
{{ graph.contents }}
{% for node in nodes %}
{{ node.contents }}
Edit this Node's contents
{% endfor %}
{% endblock bodysup %}