{% extends 'portal.html' %}
{% block title %}
{{assessment}} | Literature Review | Searches & Imports | {{object}} | HAWC
{% endblock %}
{% block breadcrumbs %}
{{assessment}}/
Literature Review/
Searches & Imports/
{% block breadcrumbs_self %}
{{object.title}}/
{% endblock breadcrumbs_self %}
{% endblock %}
{% block content %}
{{object}}
{% if crud == "Read" %}
{% endif %}
{% if object.description %}
Description | {{object.description}} |
{% endif %}
Search type | {{object.get_search_type_display}} |
Search database | {{object.get_source_display}} |
{% if object.search_string %}
{{object.get_search_type_display}} text | {{object.search_string|safe}} |
{% endif %}
Created | {{object.created}} |
Last updated | {{object.last_updated}} |
Literature Tagging Statistics
Total References |
{{object.references_count}} |
Total Tagged |
{{object.references_tagged_count}} |
Total Untagged |
{{object.references_untagged.count}} |
Reference details |
View by tag
Visualization
|
{% if crud == "Read" %}
{% if object.get_source_display == "Manually imported" %}
{% if obj_perms.edit %}
{% endif %}
{% elif object.search_type == "i" %}
{% include "lit/_import_list.html" %}
{% elif object.get_source_display == "PubMed" %}
{% include "lit/_pubmedqueries_list.html" %}
{% endif %}
{% endif %}
{% endblock %}
{% block extrajs %}
{% endblock %}