{% extends "web/base.html" %} {% block title %}My graphs · ideagraph{% endblock %} {% block content %}

My graphs

{% if rows %} {% for row in rows %} {% endfor %}
TitleSlugOwnerYour role
{{ row.graph.title|default:row.graph.slug }} {{ row.graph.slug }} {{ row.graph.owner.get_username|default:"—" }} {{ row.role }}
{% else %}

No graphs yet. Import one with manage.py import_graph <slug> <file.json> --owner {{ user.get_username }}.

{% endif %}
{% endblock %}