.
This commit is contained in:
+6
-1
@@ -1,6 +1,6 @@
|
||||
from django.urls import path, include
|
||||
|
||||
from atlas.models import Condition, Finding, Structure
|
||||
from atlas.models import Condition, Finding, Presentation, Structure
|
||||
from . import views
|
||||
|
||||
app_name = "atlas"
|
||||
@@ -123,6 +123,11 @@ urlpatterns = [
|
||||
views.ConditionAutocomplete.as_view(model=Condition, create_field="name"),
|
||||
name="condition-autocomplete",
|
||||
),
|
||||
path(
|
||||
"presentation-autocomplete",
|
||||
views.PresentationAutocomplete.as_view(model=Presentation, create_field="name"),
|
||||
name="presentation-autocomplete",
|
||||
),
|
||||
path(
|
||||
"finding-autocomplete",
|
||||
views.FindingAutocomplete.as_view(model=Finding, create_field="name"),
|
||||
|
||||
Reference in New Issue
Block a user