-
Notifications
You must be signed in to change notification settings - Fork 34
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
🎛️ Admin dashboard UX improvements #1066
Comments
Some specific feedback from this user:
|
After recent changes to OpenPATH and some more feedback we've received:
|
|
|
Some takeaways from an informal user interview with a program administrator.
A very common use case for program administrators is to inspect the trips taken by a particular user and see which trips were labeled vs. not labeled.
The current flow is not ideal, as the program admin must first use the UUID table to look up the user's
user_id
by theiruser_token
. Then they switch to the trips table; but since there's no way to filter, they have to sort byuser_id
and then go through pages and pages of entries until they get to the trips for the user they're looking for.We see 2 main things to improve this flow.
user_token
as a column to all tables. Anywhereuser_id
is shown, we can insert a column foruser_token
.user_token
and/oruser_id
.-- Perhaps ideally, a generic search bar that works on all columns and only shows rows that have the search text somewhere in that row. I think this would be beneficial in a lot of other use cases as well.
The text was updated successfully, but these errors were encountered: