diff options
author | Matthew Lemon <y@yulqen.org> | 2024-10-14 19:34:48 +0100 |
---|---|---|
committer | Matthew Lemon <y@yulqen.org> | 2024-10-14 19:34:48 +0100 |
commit | e5359482f13be86b7bec4cb725a1855c32e8a297 (patch) | |
tree | e4de315ab8fb885c5022b0d2aa1edc9e29b20108 | |
parent | bbdc85fbc53a914f9375aae0a9f3730a940ded95 (diff) |
Reformats the Sharepoint link cells
-rw-r--r-- | instruments/templates/instruments/sop_list.html | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/instruments/templates/instruments/sop_list.html b/instruments/templates/instruments/sop_list.html index 7550ca1..a7f90eb 100644 --- a/instruments/templates/instruments/sop_list.html +++ b/instruments/templates/instruments/sop_list.html @@ -16,19 +16,18 @@ <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">Name</th> - <th scope="col" class="px-2 py-1 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Sharepoint</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> + <th scope="col" class="text-right px-2 py-1 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Sharepoint</th> </tr> </thead> <tbody class="divide-y divide-gray-200"> {% for obj in object_list %} <tr> <td class="px-2 py-1 whitespace-nowrap text-m">{{ obj.name }}</td> - <td class="px-2 py-1 whitespace-nowrap text-m">{{ obj.sp_link }}</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> - + <td class="px-2 py-1 text-right whitespace-nowrap text-m"><a href="#" class="text-blue-600 hover:underline">Link</a></td> </tr> <tr> <td colspan="5"> |