-
Notifications
You must be signed in to change notification settings - Fork 155
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
Mobile App - Add/View resources #656
Comments
I'll give this one a try |
@fhilton I invited you to the repo so we can assign this. Thanks! |
Some clarification on where the data for this one is stored. TL;DR : its in the resources table today this is the resources table as things have evolved what was originally just 'resources' has become resources '50 fire trucks are here' to be broader to field reported data '1 dumpster is on fire here' '1000 pamphlets handed out here' etc. so we are working on making the UI/web speak in data (where resources is one type) even though the table is called resources and later we will make a 'foundational strike' to rename that table and entities but haven't bitten that off yet |
From the home profile screen when the user clicks the button to add a resources they will be brought to this page which is essentially a form they fill out similar to the screen shown in the wireframe about adding resources.
From the home profile screen when the user clicks Disaster Resources it will show them a table of data that pulls from the "field reported data" DB but filters and displays only entries with a Type field that begins with the word Resource.
(as visual for this page is not included in the wireframe and left to the creativity of the dev to design)
Back End:
**NOTE since right now the DB holding the field reported data is also holding the resources data (as it would potential be reported from the field) we want to specify the type as "actual type-description" for example the resource type will look like : "Resource-water" or "Resource-food" for sorting purposes we can use "-" as the delimiter and .compare() with the string "Resource"
This will require read/write access to the Field data table
The text was updated successfully, but these errors were encountered: