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

New paper

Capture a structured reference

Fill in the fields manually, or enter a PDF path and click the icon on any field to fill it with AI.

{% csrf_token %}

Paper details

Core record

{% if form.non_field_errors %}
{{ form.non_field_errors }}
{% endif %}
{% for field in form %}
{% if field.name != 'source_pdf_path' %} {% endif %}
{{ field }} {% if field.help_text %}

{{ field.help_text }}

{% endif %} {% for error in field.errors %}

{{ error }}

{% endfor %}
{% endfor %}

Contributors

Authors and affiliations

{{ formset.management_form }} {% if formset.non_form_errors %}
{{ formset.non_form_errors }}
{% endif %}
{% for author_form in formset %}
{{ author_form.id }}
{{ author_form.name }} {% for error in author_form.name.errors %}

{{ error }}

{% endfor %}
{{ author_form.affiliation }} {% for error in author_form.affiliation.errors %}

{{ error }}

{% endfor %}
{{ author_form.DELETE }}
{% endfor %}
Cancel
{% endblock %}