.
This commit is contained in:
@@ -827,6 +827,6 @@ input {
|
||||
flex: 4;
|
||||
}
|
||||
|
||||
.delete-finding-link {
|
||||
.delete-finding-link, .edit-finding-link {
|
||||
flex: 1;
|
||||
}
|
||||
@@ -44,7 +44,8 @@ This series is not associated with any cases.
|
||||
Structure(s): {{finding.structures.all|join:", "}}<br />
|
||||
Description: {{finding.description}}<br />
|
||||
</span>
|
||||
<a href="{% url 'atlas:delete_finding' pk=finding.pk %}" class="delete-finding-link">Delete finding</a>
|
||||
<a href="{% url 'atlas:series_edit_finding' pk=finding.pk %}" class="edit-finding-link">Edit</a>
|
||||
<a href="{% url 'atlas:delete_finding' pk=finding.pk %}" class="delete-finding-link">Delete</a>
|
||||
</div>
|
||||
|
||||
{% endfor %}
|
||||
|
||||
+1
-1
@@ -12,7 +12,7 @@ urlpatterns = [
|
||||
path("cases/", views.CaseView.as_view(), name="case_view"),
|
||||
path("series/", views.SeriesView.as_view(), name="series_view"),
|
||||
path("series/<int:pk>", views.series_detail, name="series_detail"),
|
||||
path("series/<int:pk>/<int:finding_pk>", views.series_detail, name="series_detail"),
|
||||
path("series/<int:pk>/<int:finding_pk>", views.series_detail, name="series_edit_finding"),
|
||||
path(
|
||||
"series/<int:pk>/order_dicom",
|
||||
views.series_order_dicom,
|
||||
|
||||
@@ -827,6 +827,6 @@ input {
|
||||
flex: 4;
|
||||
}
|
||||
|
||||
.delete-finding-link {
|
||||
.delete-finding-link, .edit-finding-link {
|
||||
flex: 1;
|
||||
}
|
||||
Reference in New Issue
Block a user