Question 11
Consider the following users list.
users = [{ "id":1, "name": "user_1", "role": "manager"}, { "id":2, "name": "user_2", "role": "manager"}, { "id":3, "name": "user_3", "role": "manager"}]An ordered HTML list is to be created for users where every list item should have a clickable “name” attribute redirecting to the endpoint “/show_users/<id>” where “id” is the “id” attribute of the same user dictionary. The correct way of doing it with jinja and HTML is ________.