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