{% extends "library/base.html" %} {% block title %}{{ paper.title }} | clrnoise{% endblock %} {% block content %}

Paper record

{{ paper.title }}

{% if paper.publication %}{{ paper.publication }}{% endif %} {% if paper.year %}{% if paper.publication %} · {% endif %}{{ paper.year }}{% endif %} {% if not paper.publication and not paper.year %}Structured summary with author affiliations and project links.{% endif %}

Back to library Use in a project {% if pdf_viewer_ready %} Open PDF {% endif %} Delete paper
{# ── Synthesis (reading notes) ───────────────────────────────────────────── #}

Synthesis

Reading notes

Summary

{{ paper.summary|linebreaksbr }}

What they did

{{ paper.what_they_did|linebreaksbr }}

How they did it and what they found

{{ paper.methodology_and_findings|linebreaksbr }}

{# ── AI Assistant ────────────────────────────────────────────────────────── #}

AI Assistant

Ask about this paper

or press Ctrl+Enter
{# ── PDF viewer ──────────────────────────────────────────────────────────── #}

Source document

PDF viewer

{% if pdf_viewer_ready %} {{ pdf_filename }} · {{ pdf_page_count }} pages {% endif %}
{% if pdf_viewer_ready %}
{# Previous page #} Page 1 of {{ pdf_page_count }} {# Next page #}
{# Browse — eye icon #} {# Select — corner-frame icon #} {# Highlight — marker pen icon #} {# Sticky note — message bubble icon #}

Read and scroll freely. Hover any annotation to reveal its delete button.

Page 1 of {{ paper.title }}
{# Note input popup — positioned absolutely inside the stage #}
{# Hidden form for CSRF — used by PDF viewer JS #}
{% csrf_token %}
{{ paper_annotations|json_script:"paper-annotations-data" }}
{% else %}

No viewable PDF is attached

Add or import a valid local PDF path for this paper to preview it inside the workspace.

{% endif %}
{# ── User notes ──────────────────────────────────────────────────────────── #}

Personal workspace

Your notes

{% if paper.user_notes %}{{ paper.user_notes|safe }}{% endif %}
{# ── Authors ─────────────────────────────────────────────────────────────── #}

Authors

Affiliations

{% for author in paper.authors.all %}
{{ author.name }} {{ author.affiliation }}
{% endfor %}
{# ── Metadata ────────────────────────────────────────────────────────────── #}

Metadata

Reference details

DOI
{{ paper.doi|default:"Not recorded" }}
Link
{% if paper.url %} Open source {% else %} Not recorded {% endif %}
Added
{{ paper.created_at|date:"M j, Y" }}
Source PDF
{{ paper.source_pdf_path|default:"Not recorded" }}
{# ── Projects ────────────────────────────────────────────────────────────── #}

Projects

Where this paper is used

{% if paper.projects.all %} {% else %}

No linked projects yet

Add this paper to a literature review project when you are ready to group it with related work.

{% endif %}
{% endblock %}