{% extends 'homepage/base.html' %} {% load static %} {% load i18n %} {% block title %}{% trans "Family Tree" %}{% endblock %} {% block header %}{% trans "Family Tree" %}{% endblock %} {% block status %} {% if user.is_authenticated %}

{% trans "Hello" %} {% firstof user.first_name user.username %}!
{% if user.is_staff %} {% trans "Edit family tree" %} {% endif %} {% trans "Logout" %}

{% else %}

{% trans "You are not logged in" %}
{% trans "Login" %} {% trans "Register" %}

{% endif %} {% endblock %} {% block sidebar %}
{% trans "contact@mail" %}
{% if perms.stammbaum.view %}
{% trans "Please select a person to upload their portrait." %}
{% if perms.stammbaum.upload_image %}
{% endif %}
{% trans "Save as SVG" %}
{% trans "Show all" %}
{% endif %} {% endblock %} {% block head %} {% if perms.stammbaum.view %} {{ persons|json_script:"person-data" }} {{ pairs|json_script:"pair-data" }} {{ groups|json_script:"group-data" }} {% endif %} {% endblock %} {% block content %} {% if user.is_authenticated %} {% if perms.stammbaum.view %}
{% else %}

{% trans "Information" %}

{% trans "Your account hasn't been validated yet." %}

{% trans "You are not allowed to view this content." %}

{% trans "Please contact an administrator." %}

{% endif %} {% else %}

{% trans "Access denied" %}

{% trans "Please login to view this content." %}

{% endif %} {% endblock %}