I am creating a UI that has to deal with the distribution of prizes. The prizes can be distributed as follows:
A total number of prizes per location
I have 10 prizes that can be claimed in total. So if a location has 10 children, I have 10 prizes total that can be won. So 10 total prizes.
A set number of prizes per location/children I have 10 prizes that can be claimed per location. So if a location has 10 children, I have 10 prizes per child node. So 100 total prizes.
Am looking for some insight on a good UI to select this paradigm.
I am stuck on the issue of being able to select 1 location (that includes children) and allocating a total number of prizes, and being able to select a location and allocating a total number of prizes per child.
Current Ideas:
I was thinking something along the lines of creating a sentence with the options. However, I don't think these are very intuitive or use language everyone could understand.
Distribute [a combined total] of ((10)) prizes per [location name]
Distribute [an individual total] of ((10)) prizes per [location name]
Legend:
[xxxx] means a selector (dropdown, modal whatever)
((xx)) input field or user input area


