mirror of
https://github.com/ae-utbm/sith.git
synced 2024-11-22 22:23:23 +00:00
f624b7c66d
* Remove graphviz and use cytoscape.js instead * Frontend generated graphs * Make installation easier and faster * Better user experience * Family api and improved interface * Fix url history when using 0, improve button selection and reset reverse with reset button * Use klay layout * Add js translations and apply review comments
67 lines
1.9 KiB
Django/Jinja
67 lines
1.9 KiB
Django/Jinja
{% extends "core/base.jinja" %}
|
|
{% from "core/macros.jinja" import user_link_with_pict, delete_godfather %}
|
|
|
|
{%- block additional_css -%}
|
|
<link rel="stylesheet" href="{{ scss('user/user_godfathers.scss') }}">
|
|
{%- endblock -%}
|
|
|
|
{% block title %}
|
|
{% trans user_name=profile.get_display_name() %}{{ user_name }}'s family{% endtrans %}
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="container">
|
|
{% if godchildren or godfathers %}
|
|
<a
|
|
href="{{ url('core:user_godfathers_tree', user_id=profile.id) }}"
|
|
class="btn btn-blue"
|
|
id="family-tree-link"
|
|
>
|
|
{% trans %}Show family tree{% endtrans %}
|
|
</a>
|
|
{% endif %}
|
|
|
|
<h4>{% trans %}Godfathers / Godmothers{% endtrans %}</h4>
|
|
{% if godfathers %}
|
|
<ul class="users">
|
|
{% for u in godfathers %}
|
|
<li class="users-card">
|
|
<a href="{{ url('core:user_godfathers', user_id=u.id) }}" class="mini_profile_link">
|
|
{{ u.get_mini_item() | safe }}
|
|
</a>
|
|
{{ delete_godfather(user, profile, u, True) }}
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
|
|
{% else %}
|
|
<p>{% trans %}No godfathers / godmothers{% endtrans %}
|
|
{% endif %}
|
|
|
|
<h4>{% trans %}Godchildren{% endtrans %}</h4>
|
|
{% if godchildren %}
|
|
<ul class="users">
|
|
{% for u in godchildren %}
|
|
<li class="users-card">
|
|
<a href="{{ url('core:user_godfathers', user_id=u.id) }}" class="mini_profile_link">
|
|
{{ u.get_mini_item()|safe }}
|
|
</a>
|
|
{{ delete_godfather(user, profile, u, False) }}
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
{% else %}
|
|
<p>{% trans %}No godchildren{% endtrans %}
|
|
{% endif %}
|
|
|
|
{% if profile == user or user.is_root %}
|
|
<form action="" method="post">
|
|
{% csrf_token %}
|
|
{{ form.as_p() }}
|
|
<p><input type="submit" value="{% trans %}Save{% endtrans %}" /></p>
|
|
</form>
|
|
{% endif %}
|
|
</div>
|
|
{% endblock %}
|
|
|