.
This commit is contained in:
@@ -32,24 +32,25 @@
|
|||||||
|
|
||||||
<div class="atlas-answer">
|
<div class="atlas-answer">
|
||||||
<p class="pre-whitespace">
|
<p class="pre-whitespace">
|
||||||
Condition:
|
Condition:
|
||||||
<ul>
|
<ul>
|
||||||
{% for con in case.condition.all %}
|
{% for con in case.condition.all %}
|
||||||
<li>{{con}}</li>
|
<li>{{con}}</li>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</ul>
|
</ul>
|
||||||
<details>
|
<details>
|
||||||
<summary><b>Findings</b></summary>
|
<summary><b>Findings</b></summary>
|
||||||
{% for series in case.series.all %}
|
See individual series for more details.<br/>
|
||||||
{% for finding in series.findings.all %}
|
{% for series in case.series.all %}
|
||||||
<div>
|
{% for finding in series.findings.all %}
|
||||||
<button class="view-finding-button" data-annotationjson={{finding.annotation_json}} data-viewportjson={{finding.viewport_json}}>Click to view</button>
|
<div>
|
||||||
Findings: {{finding.findings.all|join:", "}}<br />
|
Findings: {{finding.findings.all|join:", "}}<br />
|
||||||
Description: {{finding.description}}<br />
|
Structure: {{finding.structure}}<br />
|
||||||
</div>
|
Description: {{finding.description}}<br />
|
||||||
|
</div>
|
||||||
|
|
||||||
{% endfor %}
|
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
{% endfor %}
|
||||||
</details>
|
</details>
|
||||||
<details open>
|
<details open>
|
||||||
<summary><b>Differentials</b></summary>
|
<summary><b>Differentials</b></summary>
|
||||||
@@ -61,20 +62,20 @@
|
|||||||
</details>
|
</details>
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
Subspecialty:
|
Subspecialty:
|
||||||
<ul>
|
<ul>
|
||||||
{% for sub in case.subspecialty.all %}
|
{% for sub in case.subspecialty.all %}
|
||||||
<li>{{sub}}</li>
|
<li>{{sub}}</li>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</ul>
|
</ul>
|
||||||
</p>
|
</p>
|
||||||
<div>
|
<div>
|
||||||
{% include 'question_notes.html' %}
|
{% include 'question_notes.html' %}
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<p><b>Checked by:</b> {% for verified in case.verified.all %} <a
|
<p><b>Checked by:</b> {% for verified in case.verified.all %} <a
|
||||||
href="{% url 'atlas:verified_detail' pk=verified.pk %}">{{verified}}</a>, {% endfor %}</p>>
|
href="{% url 'atlas:verified_detail' pk=verified.pk %}">{{verified}}</a>, {% endfor %}</p>>
|
||||||
|
|
||||||
<p><b>Author(s):</b> {% for author in case.author.all %} <a
|
<p><b>Author(s):</b> {% for author in case.author.all %} <a
|
||||||
href="{% url 'atlas:author_detail' pk=author.pk %}">{{author}}</a>, {% endfor %}</p>
|
href="{% url 'atlas:author_detail' pk=author.pk %}">{{author}}</a>, {% endfor %}</p>
|
||||||
|
|||||||
@@ -24,6 +24,7 @@
|
|||||||
<div>
|
<div>
|
||||||
<button class="view-finding-button" data-annotationjson={{finding.annotation_json}} data-viewportjson={{finding.viewport_json}}>Click to view</button>
|
<button class="view-finding-button" data-annotationjson={{finding.annotation_json}} data-viewportjson={{finding.viewport_json}}>Click to view</button>
|
||||||
Findings: {{finding.findings.all|join:", "}}<br />
|
Findings: {{finding.findings.all|join:", "}}<br />
|
||||||
|
Structure: {{finding.structure.all|join:", "}}<br />
|
||||||
Description: {{finding.description}}<br />
|
Description: {{finding.description}}<br />
|
||||||
<a href="{% url 'atlas:delete_finding' pk=finding.pk %}">Delete finding</a>
|
<a href="{% url 'atlas:delete_finding' pk=finding.pk %}">Delete finding</a>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user