{% extends 'aasrp/base.html' %}
{% load i18n %}
{% load static %}
{% block aasrp_header %}
{% translate "Ship Replacement" as translated_header %}
{% include 'aasrp/partials/header/h1.html' with header_text=translated_header %}
{% endblock %}
{% block aasrp_body %}
{% include 'aasrp/partials/dashboard/buttons.html' %}
{% include 'aasrp/partials/dashboard/table.html' %}
{% include 'aasrp/modals/dashboard/enable_srp_link.html' %}
{% include 'aasrp/modals/dashboard/disable_srp_link.html' %}
{% include 'aasrp/modals/dashboard/delete_srp_link.html' %}
{% include 'aasrp/modals/view_requests/request_details.html' %}
{% endblock %}
{% block extra_css %}
{% include 'bundles/datatables-css.html' %}
{% endblock %}
{% block extra_javascript %}
{% include 'bundles/datatables-js.html' %}
{% include 'bundles/moment-js.html' with locale=True %}
{% endblock %}