Attendance tracker

I want to create a basketball practice attendance log with Glide. Initial data: there are two groups of children, let’s call them Group A and Group B. I want to have a calendar view where, when I click on the date I need, another window opens with a choice of groups. Then, after selecting the appropriate group, a new window would open again, listing the participants in that group. Next to the participants’ names, there should only be a mark indicating their participation, for example, a check mark. The same should apply to the other group. Result: the new window visually displays the players’ statistics. Is it possible to do this with Glide? Can anyone help me with this?

hey ramunas.. this is easily possible with glide. Here’s how:

  1. set up your dataables:
  2. Groups table: List group names (Group A, Group B).
  3. players table: List all children’s names, and connect each to a group and use a relation column)
  4. attendance table: This tracks attendance with columns like date, group, player id, present (true or false)
  5. Create a calenddar view
  6. Use the calendar component linked to your attendance table to see dates
  7. Users can click on any date
  8. Select a group:
  9. After picking a date.. show a screen where the user selects group A or B
  10. Show player list fro group:
  11. After selecting a group show all players in that group for the chosen date.
  12. Each player gets a boolean column checkbox to record if they attended.

You can create another screen to show stats, like how many times each player attended.

Thanks a lot, I’ll try it soon.