.
This commit is contained in:
@@ -1,10 +1,10 @@
|
||||
|
||||
{% extends 'anatomy/base.html' %}
|
||||
|
||||
{% block content %}
|
||||
CID: {{ciduseranswer.cid}}<br/>
|
||||
{{ciduseranswer.title}}<br/>
|
||||
{{ciduseranswer.question}}<br/>
|
||||
Answer(s): {{ciduseranswer.answers}}<br/>
|
||||
<a href="{% url 'anatomy:user_answer_delete' ciduseranswer.id %}">Delete answer</a>
|
||||
{% endblock content %}
|
||||
CID: {{ciduseranswer.cid}}<br />
|
||||
Exam: {{ciduseranswer.exam}}<br />
|
||||
{{ciduseranswer.question}}<br />
|
||||
Answer: {{ciduseranswer.answer}}<br />
|
||||
Score: {{ciduseranswer.get_answer_score}}<br />
|
||||
<a href="{% url 'anatomy:user_answer_delete' ciduseranswer.id %}">Delete answer</a>
|
||||
{% endblock content %}
|
||||
|
||||
@@ -1,23 +1,24 @@
|
||||
{% extends 'longs/base.html' %}
|
||||
|
||||
{% block content %}
|
||||
CID: {{ciduseranswer.cid}}
|
||||
CID: {{ciduseranswer.cid}}</br>
|
||||
Exam: {{ciduseranswer.exam}}<br />
|
||||
|
||||
<h3>Question</h3>
|
||||
{{ciduseranswer.question}}
|
||||
<h3>Question</h3>
|
||||
{{ciduseranswer.question}}
|
||||
|
||||
<h3>Answers</h3>
|
||||
<h4>Observation</h4>
|
||||
<pre>{{ciduseranswer.answer_observations}}</pre><br />
|
||||
<h4>Interpretation</h4>
|
||||
<pre>{{ciduseranswer.answer_interpretation}}</pre><br />
|
||||
<h4>Principle Diagnosis</h4>
|
||||
<pre>{{ciduseranswer.answer_principle_diagnosis}}</pre><br />
|
||||
<h4>Differential Diagnosis</h4>
|
||||
<pre>{{ciduseranswer.answer_differential_diagnosis}}</pre><br />
|
||||
<h4>Managment</h4>
|
||||
<pre>{{ciduseranswer.answer_management}}</pre><br />
|
||||
<h3>Answers</h3>
|
||||
<h4>Observation</h4>
|
||||
<pre>{{ciduseranswer.answer_observations}}</pre><br />
|
||||
<h4>Interpretation</h4>
|
||||
<pre>{{ciduseranswer.answer_interpretation}}</pre><br />
|
||||
<h4>Principle Diagnosis</h4>
|
||||
<pre>{{ciduseranswer.answer_principle_diagnosis}}</pre><br />
|
||||
<h4>Differential Diagnosis</h4>
|
||||
<pre>{{ciduseranswer.answer_differential_diagnosis}}</pre><br />
|
||||
<h4>Managment</h4>
|
||||
<pre>{{ciduseranswer.answer_management}}</pre><br />
|
||||
|
||||
|
||||
|
||||
{% endblock content %}
|
||||
{% endblock content %}
|
||||
|
||||
@@ -3,8 +3,10 @@
|
||||
|
||||
{% block content %}
|
||||
CID: {{ciduseranswer.cid}}<br/>
|
||||
Exam: {{ciduseranswer.exam}}<br/>
|
||||
{{ciduseranswer.question}}<br/>
|
||||
Normal: {{ciduseranswer.normal}}<br/>
|
||||
Answer: {{ciduseranswer.answer}}<br/>
|
||||
Score: {{ciduseranswer.get_answer_score}}<br/>
|
||||
<a href="{% url 'rapids:user_answer_delete' ciduseranswer.id %}">Delete answer</a>
|
||||
{% endblock content %}
|
||||
Reference in New Issue
Block a user