{% extends "aristotle_mdr/user/userHome.html" %} {% load i18n aristotle_tags util_tags humanize %} {% block sidebar %} {% include "aristotle_mdr/user/userSideBar.html" with activeTab='profile' %} {% endblock %} {% block page %}

{% block title %}Recently viewed metadata{% endblock %}

This page shows a history of all metadata you have viewed, you can clear your history by clicking the "Clear history" button below.
Clear History {% with favourites=request.user.profile.favourites.select_subclasses %} {% for recent in page %} {% with item=recent.concept %} {% endwith %} {% endfor %} {% endwith %}
Date Time {% trans 'Name' %} {% trans 'Details' %} {% trans 'Statuses' %}
{% if not hide_checkbox %} {% endif %} {% if item.is_registered %} {% else %} {% endif %} {% if not hide_favourites %} {% if request.user.is_active %} {% with is_favourite=item|is_in:favourites %} {% if is_favourite %} {% else %} {% endif %} {% endwith %} {% endif %} {% endif %} {% ifchanged recent.view_date.date recent.view_date.date %} {% endifchanged %} {% include "aristotle_mdr/helpers/itemLink.html" with item=item shared_items=shared_items %}
{{ item.item_type_name }}
{% include item.item.list_details_template with item=item %}
    {% for s in item.current_statuses %}
  • {{ s.registrationAuthority }}: {{ s.state_name }}
  • {% empty %}
  • Unregistered
  • {% endfor %}
{% csrf_token %}
{% include "aristotle_mdr/helpers/paginator.html" with page=page_obj %} {% bootstrap_modal "clear_history" size='md' %} {% endblock %}