diff options
author | Matthew Lemon <y@yulqen.org> | 2024-10-15 12:18:39 +0100 |
---|---|---|
committer | Matthew Lemon <y@yulqen.org> | 2024-10-15 12:18:39 +0100 |
commit | 9015934a186b8843cc6d5ec48e41c5e2408f3fcf (patch) | |
tree | 7bbcc721643dfd507fa3234e76d54f130e8ebb8b | |
parent | 5034e4833fe67932ba1a2caf31d19912d64f62cf (diff) |
Adds inspector designation to table
-rw-r--r-- | instruments/templates/instruments/sop_list.html | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/instruments/templates/instruments/sop_list.html b/instruments/templates/instruments/sop_list.html index a7f90eb..90e3889 100644 --- a/instruments/templates/instruments/sop_list.html +++ b/instruments/templates/instruments/sop_list.html @@ -15,6 +15,7 @@ <table class="divide-y divide-gray-200"> <thead class="bg-gray-50"> <tr> + <th scope="col" class="px-2 py-1 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Designation</th> <th scope="col" class="px-2 py-1 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Name</th> <th scope="col" class="px-2 py-1 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Lead Inspector</th> <th scope="col" class="px-2 py-1 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Status</th> @@ -24,6 +25,7 @@ <tbody class="divide-y divide-gray-200"> {% for obj in object_list %} <tr> + <td class="px-2 py-1 whitespace-nowrap text-m">{{ obj.designation }}</td> <td class="px-2 py-1 whitespace-nowrap text-m">{{ obj.name }}</td> <td class="px-2 py-1 whitespace-nowrap text-m">{{ obj.author_lead.fullname }}</td> <td class="px-2 py-1 whitespace-nowrap text-m">{{ obj.draft_status }}</td> |