From e497ab0df26945e6fa51e8ff4aa91d1d53c264f7 Mon Sep 17 00:00:00 2001 From: numahell Date: Sat, 22 Oct 2016 01:34:43 +0200 Subject: [PATCH] Improve user detail and add email for request|staff --- proposals/templates/proposals/user_details.html | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/proposals/templates/proposals/user_details.html b/proposals/templates/proposals/user_details.html index 338547f..bf53e42 100644 --- a/proposals/templates/proposals/user_details.html +++ b/proposals/templates/proposals/user_details.html @@ -17,12 +17,18 @@

{% trans "Biography" %}

{{ profile.biography }}

+{% if request|staff %} +

{{ profile.user.email }}

+{% endif %} +

{% trans "Talks" %}

{% include "proposals/_talk_list.html" %} {% if request|edit_profile:profile %} -

{% trans "Preferences" %}

+

{% trans "Information" %}

+ +

{% trans "Travels and hosting" %}

+ +

{% trans "Talk needs" %}

+ + -

{% trans "Constraints" %}

+

{% trans "Constraints" %}

{{ participation.constraints|linebreaksbr }}

-

{% trans "Notes" %}

+

{% trans "Notes" %}

{{ participation.notes|linebreaksbr }}

{% endif %}