-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
43 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
src/genlab_bestilling/staff/templates/staff/analysisorder_detail.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
{% extends "base.html" %} | ||
{% extends "staff/base.html" %} | ||
{% load i18n %} | ||
|
||
|
||
|
2 changes: 1 addition & 1 deletion
2
src/genlab_bestilling/staff/templates/staff/analysisorder_filter.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
{% extends "staff/base_filter.html" %} | ||
|
||
{% block page-title %} | ||
Analysis Order | ||
Analysis Orders | ||
{% endblock page-title %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
{% extends "base.html" %} | ||
|
||
{% block main %} | ||
<main class="grid grid-cols-6"> | ||
<div class="px-2 py-2 min-w-72 bg-white"> | ||
<h5 class="font-bold text-xl">Menu</h5> | ||
<ul class="flex flex-col gap-2 mt-2 text-lg px-4"> | ||
<li><a href="{% url 'staff:order-analysis-list' %}">Dashboard</a></li> | ||
<li><a href="{% url 'staff:order-analysis-list' %}">Analysis Orders</a></li> | ||
<li><a href="{% url 'staff:order-equipment-list' %}">Equipment Orders</a></li> | ||
</ul> | ||
</div> | ||
<div class="p-4 md:p-6 2xl:p-10 col-span-5"> | ||
{% if messages %} | ||
{% for message in messages %} | ||
<div class="alert {% if message.tags %}alert-{{ message.tags }}{% endif %}" x-data="{ show: true }" x-show="show"> | ||
<div> | ||
{{ message }} | ||
</div> | ||
<div> | ||
<button type="button" | ||
class="" | ||
@click.prevent="show = false" | ||
aria-label="Close"> | ||
<i class="fas fa-times"></i></button> | ||
</div> | ||
</div> | ||
{% endfor %} | ||
{% endif %} | ||
|
||
{% block content %} | ||
{% endblock content %} | ||
</main> | ||
{% endblock %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
src/genlab_bestilling/staff/templates/staff/equipmentorder_detail.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
{% extends "base.html" %} | ||
{% extends "staff/base.html" %} | ||
{% load i18n %} | ||
|
||
|
||
|
2 changes: 1 addition & 1 deletion
2
src/genlab_bestilling/staff/templates/staff/equipmentorder_filter.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
{% extends "staff/base_filter.html" %} | ||
|
||
{% block page-title %} | ||
Equipment Order | ||
Equipment Orders | ||
{% endblock page-title %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters