.
This commit is contained in:
@@ -75,7 +75,7 @@
|
|||||||
</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>
|
||||||
|
|||||||
+3
-4
@@ -85,18 +85,17 @@ urlpatterns = [
|
|||||||
),
|
),
|
||||||
path(
|
path(
|
||||||
"condition-autocomplete",
|
"condition-autocomplete",
|
||||||
views.ConditionAutocomplete.as_view(model=Condition, create_field='condition'),
|
views.ConditionAutocomplete.as_view(model=Condition, create_field="name"),
|
||||||
name="condition-autocomplete",
|
name="condition-autocomplete",
|
||||||
),
|
),
|
||||||
path(
|
path(
|
||||||
"finding-autocomplete",
|
"finding-autocomplete",
|
||||||
views.FindingAutocomplete.as_view(model=Finding, create_field='finding'),
|
views.FindingAutocomplete.as_view(model=Finding, create_field="name"),
|
||||||
name="finding-autocomplete",
|
name="finding-autocomplete",
|
||||||
),
|
),
|
||||||
path(
|
path(
|
||||||
"structure-autocomplete",
|
"structure-autocomplete",
|
||||||
views.StructureAutocomplete.as_view(model=Structure, create_field='structure'),
|
views.StructureAutocomplete.as_view(model=Structure, create_field="name"),
|
||||||
name="structure-autocomplete",
|
name="structure-autocomplete",
|
||||||
),
|
),
|
||||||
|
|
||||||
]
|
]
|
||||||
|
|||||||
Reference in New Issue
Block a user