..
This commit is contained in:
@@ -361,4 +361,11 @@ function keyDownHandler(e) {
|
||||
//window.scrollBy(0, -25);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
function popitup(url, title) {
|
||||
newwindow=window.open(url,title,'height=600,width=500');
|
||||
if (window.focus) {newwindow.focus()}
|
||||
return false;
|
||||
}
|
||||
@@ -7,11 +7,16 @@
|
||||
<p class="pre-whitespace"><b>History:</b> {{ question.history }}</p>
|
||||
|
||||
<p class="pre-whitespace"><b>Abnormality:</b> {{ question.get_abnormalities }}</p>
|
||||
<div class="pre-whitespace multi-image-block"><b>Series:</b>
|
||||
<div class="pre-whitespace multi-image-block"><b>Series:</b>
|
||||
{% for series in question.series.all %}
|
||||
<span class="series-block">
|
||||
Series {{ forloop.counter }}:
|
||||
{{series.get_block}}
|
||||
Series {{ forloop.counter }}:
|
||||
<a href="{% url 'longs:long_series_detail' pk=series.pk %}">
|
||||
{{series.get_block}}
|
||||
</a>
|
||||
|
||||
<a href="test.html" onclick="return popitup(`/longs/series/${series.pk}`)"
|
||||
>Test</a>
|
||||
</span>
|
||||
{% endfor %}
|
||||
</div>
|
||||
@@ -21,7 +26,7 @@
|
||||
<p><b>Checked by:</b> {% for verified in question.verified.all %} <a
|
||||
href="{% url 'longs:verified_detail' pk=verified.pk %}">{{verified}}</a>, {% endfor %}</p>
|
||||
<p><b>Scrapped:</b> {{ question.scrapped }} <a href="{% url 'longs:long_scrap' pk=question.pk %}">(toggle)</a>
|
||||
<h3>Model answers</h3>
|
||||
<h3>Model answers</h3>
|
||||
<p class="pre-whitespace"><b>Observations:</b> {{ question.model_observations }}</p>
|
||||
<p class="pre-whitespace"><b>Interpretation:</b> {{ question.model_interpretation }}</p>
|
||||
<p class="pre-whitespace"><b>Principle Diagnosis:</b> {{ question.model_principle_diagnosis }}</p>
|
||||
|
||||
Reference in New Issue
Block a user