{% extends "base.html" %} {% block dojo_widgets %} {% endblock %} {% block styles %} {% endblock %} {% block extrahead %} {% include "remember_scroll_position_script.html" %} {% endblock %} {% block enable_scroll_position %} onunload="rememberScrollPosition();" onload="applyScrollPosition();" {% endblock %} {% block title %}Users: {{user}}{% endblock %} {% block navbar %} Home | Profiles | {{disp_user.get_full_name}} {% endblock %} {% block content %} {% load profiles %}
{% comment %} {% profile_menu disp_user %} {% connections_statistics disp_user %} {% messages_statistics disp_user %} {% positions_statistics disp_user %} {% received_requests_statistics disp_user %} {% sent_requests_statistics disp_user %} {% other_activities_statistics disp_user %} {% endcomment %}
{% if selection == 'profile' %}
{% user_abstract disp_user %}
{% endif %} {% if selection == 'career' %} {% user_positions disp_user %} {% endif %} {% if selection == 'collaborators' %} {% user_collaborators disp_user %} {% endif %} {% if selection == 'sent_messages' %} {% sent_messages disp_user %} {% endif %} {% if selection == 'received_messages' %} {% received_messages disp_user %} {% endif %} {% if selection == 'sent_requests' %} {% sent_requests disp_user %} {% endif %} {% if selection == 'received_requests' %} {% received_requests disp_user %} {% endif %}
{% position_section disp_user %}
{% comment %}
{% include "user_profile_abstract.html" %} {% include "emails_history.html" %} {% include "requested_files.html" %} {% include "wanted_files.html" %}
{% endcomment %} {% comment %}
{% include "user_collaborators.html" %} {% include "list_of_contacts.html" %}
{% endcomment %} {% comment %} {% include "saved_queries.html" %} {% endcomment %} {% comment %} {% if files.have_access %}

You have access to the following files:

{% for file in files.have_access %} {% endfor %}
FileRecording blockExperimentDate authorized
{{file.file}} {{file.block.name}} {{file.experiment}}{{file.auth_date}}
{% endif %} {% if files.access_requested %}

You have requested access to the following files:

{% for file in files.access_requested %} {% endfor %}
FileRecording blockExperimentDate requested
{{file.file}} {{file.block.name}} {{file.experiment}}{{file.request_date}}
{% endif %} {% if files.access_denied %}

Your requests for access to the following files have been denied:

{% for file in files.access_denied %} {% endfor %}
FileRecording blockExperimentDate requested
{{file.file}} {{file.block.name}} {{file.experiment}}{{file.request_date}}
{% endif %} {% endcomment %} {% endblock %}