{% extends 'scipost/base.html' %} {% block pagetitle %}: Thesis Link detail{% endblock pagetitle %} {% block headsup %} {% endblock headsup %} {% block bodysup %} {% if user.is_authenticated %} SciPost Thesis Link Thesis information: {{ thesislink.header_as_table|safe }} Abstract: {{ thesislink.abstract }} {% if comments %} Comments on this thesis Toggle comments view {% for comment in comments %} {{ comment.print_identifier|safe }} Category: {% if comment.is_rem %}remark{% endif %} {% if comment.is_que %}question{% endif %} {% if comment.is_ans %}answer to question{% endif %} {% if comment.is_obj %}objection{% endif %} {% if comment.is_rep %}reply to objection{% endif %} {% if comment.is_val %}validation or rederivation{% endif %} {% if comment.is_lit %}pointer to related literature{% endif %} {% if comment.is_sug %}suggestion for further work{% endif %} {% if user.is_authenticated and user.contributor.rank > 0 %} {% csrf_token %} {{ opinion_form }} {% endif %} {{ comment.opinions_as_ul|safe }} Comment text: {{ comment.comment_text|linebreaks }} {% for reply in author_replies %} {% if reply.in_reply_to_comment.id = comment.id %} Author reply ({{ reply.date_submitted }}): {{ reply.reply_text|linebreaks }} {% endif %} {% endfor %} {% if user.is_authenticated and user.contributor.rank > 0 %} Reply to this comment (Author) Reply to this comment (Contributor) {% endif %} {% endfor %} {% endif %} {% if user.is_authenticated and thesislink.open_for_commenting and user.contributor.rank > 0 %} Contribute a Comment: {% csrf_token %} {% load crispy_forms_tags %} {% crispy form %} {% endif %} {% endif %} {% endblock bodysup %}
{{ thesislink.abstract }}
{{ comment.comment_text|linebreaks }}
{{ reply.reply_text|linebreaks }}
Category:
{% if comment.is_rem %}- remark
{% endif %}
{% if comment.is_que %}- question
{% endif %}
{% if comment.is_ans %}- answer to question
{% endif %}
{% if comment.is_obj %}- objection
{% endif %}
{% if comment.is_rep %}- reply to objection
{% endif %}
{% if comment.is_val %}- validation or rederivation
{% endif %}
{% if comment.is_lit %}- pointer to related literature
{% endif %}
{% if comment.is_sug %}- suggestion for further work
{% endif %}
Comment text:
{{ comment.comment_text|linebreaks }}
Author reply ({{ reply.date_submitted }}):
{{ reply.reply_text|linebreaks }}
Reply to this comment (Author)
Reply to this comment (Contributor)