Reports¶
Report Model¶
| Model field reference | cv.models.Report |
| Authorship set | cv.models.ReportAuthorship |
The Report model represents an instance
of a report or a publication with a similar format to a report (e.g.,
policy brief, working paper, etc.)
Report Views¶
Report List : cv.views.CVListView
Context object {{report_objects}}Template 'cv/lists/report_list.html'URL 'reports/'MIME type text/htmlThe report list view produces a page with a list of an author’s reports. The page is a rendered instance of the
cv.views.CVListViewview with the named parametermodel_nameset to'report'. The view returns the object{{object_list}}in the context with with four objects on its dot path:
total_reports- Integer of total number of books from all three managers:
report_published_listQuerySetof all published books (uses the published manager <topics-pubs-published-manager>)report_revise_list- queryset of all books in the revision process (uses the revise manager <topics-pubs-revise-manager>)
report_inprep_list- queryset of all books in preparation for submission (uses the inprep manager <topics-pubs-published-manager>)
The URL can be accessed in templates by using the URL template filter with the named URL
section_listandmodel_nameparameter equal toreport, i.e.:{% url section_list model_name='report' %}
- Report Detail:
cv.views.CVDetailView Context object {{report}}Template 'cv/details/report_detail.html'URL 'reports/<slug:slug>/'MIME type text/htmlThe report detail view produces a representation of a single report. The page renders an instance of
cv.views.CVDetailViewwith the named parametersmodel_nameset to'report'and theslugset to the value of the report’sslugfield. The view returns the context object{{report}}that represents a singleReportinstance.- Report Citation:
cv.views.citation_view() Context object {{report}}Templates 'cv/citations/report.ris''cv/citations/report.bib'URL 'reports/<slug:slug>/citation/<str:format>/'MIME types application/x-research-info-systemsapplication/x-bibtexCreates representation of a report as a file that can be downloaded or exported to citation management software.
The
<str:format>named parameter should be one of:'ris'- will create downloadable citation using Reference Manager format specification (see http://endnote.com/sites/rm/files/m/direct_export_ris.pdf).
'bib'- will create downloadable citation using the BibTeX format specification (see http://www.bibtex.org/Format/)