{% 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 %}
{% load guardian_tags %}
{% get_obj_perms request.user for graph as "graph_perms" %}
{% if "change_graph" in graph_perms %}
{% if graph.private %}
{% endif %}
{% endif %}
{{ graph.contents }}
{% for node in nodes %}
{{ node.contents }}
Edit this Node's contents
Delete this Node
{% endfor %}
{% endblock bodysup %}