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

Paper library

Browse the internal database

Search by title, summary, author, or affiliation to quickly find the papers you want to reuse.

Results

{{ papers|length }} paper{{ papers|length|pluralize }}

Add another paper
{% if papers %}
{% for paper in papers %}

{{ paper.title }}

{{ paper.project_total }} project{{ paper.project_total|pluralize }}

{{ paper.author_line|default:"Author details pending" }} {% if paper.publication %} · {{ paper.publication }}{% endif %} {% if paper.year %} · {{ paper.year }}{% endif %}

{{ paper.summary|truncatechars:220 }}

{% endfor %}
{% else %}

No papers match this search

Try a broader keyword or add a new paper to the database.

{% endif %}
{% endblock %}