diff options
-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> |