diff --git a/atlas/templates/atlas/base.html b/atlas/templates/atlas/base.html index 79f044c3..8106488e 100755 --- a/atlas/templates/atlas/base.html +++ b/atlas/templates/atlas/base.html @@ -49,6 +49,9 @@
  • Normals
  • +
  • + Search Cases +
  • {% if request.user.is_staff %}
  • diff --git a/atlas/templates/atlas/case_search_page.html b/atlas/templates/atlas/case_search_page.html new file mode 100644 index 00000000..a870c63f --- /dev/null +++ b/atlas/templates/atlas/case_search_page.html @@ -0,0 +1,67 @@ +{% extends 'atlas/base.html' %} + +{% block content %} +
    +

    Search Cases

    + +
    +
    + +
    +
    + +
    + +
    + +
    + +
    + + + +
    + +
    + + Clear +
    +
    + +
    + {% include 'atlas/partials/case_search_results.html' with cases=cases recent_cases=recent_cases collection=None q=q %} + + {# pagination controls #} + {% if cases.has_other_pages %} + + {% endif %} +
    +
    +{% endblock %} diff --git a/atlas/templates/atlas/index.html b/atlas/templates/atlas/index.html index 73281016..a01c0941 100644 --- a/atlas/templates/atlas/index.html +++ b/atlas/templates/atlas/index.html @@ -68,6 +68,7 @@ hx-trigger="input delay:500ms, keyup[key=='Enter']" hx-target="#case-search-results" hx-indicator="#case-search-indicator" /> + Advanced