A mix of single and bulk delete
I'm working on a UI that will allow users to save thousands of records. They also have the ability to organize these records into Projects.
In the main records screen, we allow bulk delete - ie: you can check off multiple items then delete them in bulk. This is because, as mentioned, thousands of records.
However, in the Projects screen, we don't anticipate users having a lot of Projects. There will only be 3 or 4, so bulk editing isn't really necessary here, so I was thinking of only allowing users to delete one Project at a time.
This is what the records screen with bulk editing looks like. Note that the "Delete" button will only appear after at least one item has been checked off.
The Projects screen almost looks exactly the same, but without the checkboxes/ability to bulk delete.
I guess we can mirror the UI for consistency, but I just don't think bulk editing is necessary for something that won't even contain a ton of items.
Is it ok to have a mix of bulk and single editing in the UI?