Skip to content

Commit

Permalink
Introduce batch transfer layout
Browse files Browse the repository at this point in the history
  • Loading branch information
medihack authored Aug 16, 2023
1 parent fef9037 commit a3e9159
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 9 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% extends "core/core_layout.html" %}
{% extends "batch_transfer/batch_transfer_layout.html" %}
{% load dicom_job_status_css_class from core_extras %}
{% load render_table from django_tables2 %}
{% load job_control_panel from batch_transfer_extras %}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,5 @@
{% extends "core/core_layout.html" %}
{% load static from static %}
{% extends "batch_transfer/batch_transfer_layout.html" %}
{% load crispy from crispy_forms_tags %}
{% block script %}
{{ block.super }}
<script src="{% static 'batch_transfer/batch_transfer_job_form.js' %}"></script>
{% endblock script %}
{% block heading %}
<div class="d-flex justify-content-between align-items-start">
<h4 class="mb-3">
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% extends "core/core_layout.html" %}
{% extends "batch_transfer/batch_transfer_layout.html" %}
{% block heading %}
<div class="d-flex justify-content-between align-items-start">
<h4 class="mb-3">Batch Transfer Jobs</h4>
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{% extends "core/core_layout.html" %}
{% load static from static %}
{% block script %}
{{ block.super }}
<script src="{% static 'batch_transfer/batch_transfer.js' %}"></script>
{% endblock script %}
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% extends "core/core_layout.html" %}
{% extends "batch_transfer/batch_transfer_layout.html" %}
{% block heading %}
<h4 class="mb-3">Batch Transfer Task</h4>
{% endblock heading %}
Expand Down

0 comments on commit a3e9159

Please sign in to comment.