-
Notifications
You must be signed in to change notification settings - Fork 4
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
Figure out data hierarchy for displaying in UI #40
Comments
Seems reasonable to me. I think refining things to be more descriptive and understandable would be good as well. |
Yeah we definitely need a "category" that sits above "organizations" or "meeting types". I included a few examples of these in my design doc: https://paper.dropbox.com/doc/Open-Wichita-Public-Meetings-phUWrX8PJuUpfroQ56krE |
@infernocloud the doc is looking good! Lots of great ideas in there. It seems like it would make the most sense for the
|
In my mind, it makes sense to even split it up to one more level.
Category lets us group and find similar organizations. Organization lets us easily see all scheduled events for the same entity, and then the meetings would be unique meeting "types" that then have a schedule associated with them. I'm thinking its possible for an organization to have more than 1 meeting "type". This may be a lot of changes right now though. But it is something to keep in mind. |
@infernocloud I agree, organizations should also be represented here. Might be best to make it a many-to-many relationship just in case some meetings involve multiple orgs. What you mentioned is a decent amount of change but also better to handle data structure issues early on. @Mearnest what's your opinion on all this? |
@sethetter Michael's suggestion for organization makes sense. I can add this to the Launch list. |
For example, right now we have "Meeting Types" that each have a
type
property. The value of this property is something likecouncil
orboe
(board of education). But the MeetingTypetitle
prop is the specific meeting withing the more broadtype
property (there are severalboe
meeting types).The question is -- What's the top level that we display to users? It seems like the
type
column on the MeetingType is what we need, but we don't have a friendly display for that right now (they're all just lowercase, and some are acronyms). Having descriptions for these as well would be good.The only thing I can really come up with is creating a
Category
model to hold this, and give it aslug
property to associate with thetype
column onMeetingTypes
.@Mearnest @aaronarduino thoughts?
The text was updated successfully, but these errors were encountered: