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

Project workspace

{{ project.name }}

{{ project.focus|default:"A reusable collection of selected papers from your internal library." }}

Back to dashboard Edit project Add papers from library
Included papers {{ project.paper_total }}
Created {{ project.created_at|date:"M j, Y" }}
Last updated {{ project.updated_at|date:"M j, Y" }}
{# ── Timeline ────────────────────────────────────────────────────────────── #}

Publication history

Paper timeline

{% if timeline_year_range %} {{ timeline_year_range }} {% endif %}
{% if timeline_stops or timeline_undated %}
{% for stop in timeline_stops %} {% endfor %} {% if timeline_undated %} {% endif %}
{% else %}

Add papers to this project to see them plotted on the timeline.

{% endif %}
{# ── AI Literature Review ─────────────────────────────────────────────────── #}

AI synthesis

Literature review

{% if project.literature_review %}{{ project.literature_review|safe }}{% endif %}
{# ── Paper reading set ───────────────────────────────────────────────────── #}

Selected papers

Project reading set

{% if project.papers.all %}
{% for paper in project.papers.all %}

{{ paper.title }}

{% if paper.year %}{{ paper.year }}{% else %}No year{% endif %}

{{ paper.author_line|default:"Author details pending" }}

{% for author in paper.authors.all %}
{{ author.name }} {{ author.affiliation }}
{% endfor %}
Summary

{{ paper.summary|truncatechars:180 }}

What they did

{{ paper.what_they_did|truncatechars:180 }}

Method + findings

{{ paper.methodology_and_findings|truncatechars:180 }}

{% endfor %}
{% else %}

No papers linked yet

Select papers from your library to include in this project.

Add papers from library
{% endif %}
{# ── Project notes ───────────────────────────────────────────────────────── #}

Scope

Project notes

{% if project.description %}

{{ project.description|linebreaksbr }}

{% else %}

No description yet

Add a description via Edit project.

{% endif %}
{% endblock %}