{% extends "base.html" %} {% import '_macros.html' as macros %} {% block content %}

Rhizom logo

{{ _("Visualize your relationship network.") }} {{ _("Learn more") }}

{% if graphs %}

{{ _("Available graphs:") }}

{% else %}

{{ _("No graph available.") }}

{% endif %} {% if current_user.is_authenticated %}

{{ _("New graph") }}

{{ new_form.hidden_tag() }}

{{ _("Create an empty graph:") }} {{ macros.render_field(new_form.name, class="input-sm") }}

{% if graphs %}
{{ copy_form.hidden_tag() }}

{{ _("Or from an existing graph:") }} {{ macros.render_field(copy_form.existing, class="form-control input-sm") }}

{% endif %}
{% else %}

{{ _("You need to login to see the graphs:") }}   Login

{% endif %} {% endblock %}