An open API service indexing awesome lists of open source software.

https://github.com/amitrahul/admin_ui

an interface for admins to see and delete users. The users will be provided via an API.
https://github.com/amitrahul/admin_ui

Last synced: 3 months ago
JSON representation

an interface for admins to see and delete users. The users will be provided via an API.

Awesome Lists containing this project

README

        

# Admin_UI
It is an interface for admins to see and delete users. The users will be provided via an API

These are the requirements :

1. Column titles must stand out from the entries.
2. There should be a search bar that can filter on any property.
3. You should be able to edit or delete rows in place.(There is no expectation of persistence. Edit and delete are expected to only happen in memory.)
4. You need to implement pagination: Each page contains 10 rows. Buttons at the bottom allow you to jump to any page including special buttons for first page, previous page, next page and last page. Pagination must update based on search/filtering. If there are 25 records for example that match a search query, then pagination buttons should only go till 3.
5. You should be able to select one or more rows. A selected row is highlighted with a grayish background color. Multiple selected rows can be deleted at once using the 'Delete Selected' button at the bottom left.
6. Checkbox on the top left is a shortcut to select or deselect all displayed rows. This should only apply to the ten rows displayed in the current page, and not all 50 rows.
Users API
We provide you an Users API to list all the users and their properties.

Request Type :
GET

Endpoint :
https://geektrust.s3-ap-southeast-1.amazonaws.com/adminui-problem/members.json

![admin](https://github.com/amitrahul/Admin_UI/assets/66786601/f10b9d7a-77d5-4bc1-877b-4deea3e51864)