You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Need to create a simple interface for updating the website content so that the tech team can focus on more than just updating static page content.
Posting new content will look like filling the following forms, which will create respective entries in our DB:
Event
Field
Desc.
Attendees
int simple number field/dropdown
Date
string should be a form that enforces format ex:'2192-10-20T16:00-07:00'
Description
String text area for arbitrary amount of input
Image
URL file upload from local machine
Location
String arbitrary string meant to describe the event location
Name
String event name
Sponsor
String event sponsor
Project
Field
Desc.
Description
String text area for arbitrary amount of input
Image
URL file upload from local machine
Name
String project team name
Lead
Field
Desc.
Active
bool checkbox
Grad year
int drop-down
Image
URL file upload from local machine
Date joined
string should be a form that enforces format ex:'2192-10-20T16:00-07:00'
Date left
string should be a form that enforces format ex:'2192-10-20T16:00-07:00'
Name
String name
Role
String club role
Email
String email
Team
String team name
Updating/Deleting content would ideally be done in a way that the user can navigate a simple menu consisting on the above DB entities, with the option to either update or delete any given record.
First, implement the creation forms to the point where you can output all of the form data. Then we will change the names and process the data so that it can be hooked up to our backend.
The text was updated successfully, but these errors were encountered:
One thing that might be tricky about the image part is that the url is a thing generated by firebase (so might need to do multiple calls to firebase to allow a user to upload an image)
Need to create a simple interface for updating the website content so that the tech team can focus on more than just updating static page content.
Posting new content will look like filling the following forms, which will create respective entries in our DB:
Event
int
simple number field/dropdownstring
should be a form that enforces format ex:'2192-10-20T16:00-07:00'String
text area for arbitrary amount of inputURL
file upload from local machineString
arbitrary string meant to describe the event locationString
event nameString
event sponsorProject
String
text area for arbitrary amount of inputURL
file upload from local machineString
project team nameLead
bool
checkboxint
drop-downURL
file upload from local machinestring
should be a form that enforces format ex:'2192-10-20T16:00-07:00'string
should be a form that enforces format ex:'2192-10-20T16:00-07:00'String
nameString
club roleString
emailString
team nameUpdating/Deleting content would ideally be done in a way that the user can navigate a simple menu consisting on the above DB entities, with the option to either update or delete any given record.
First, implement the creation forms to the point where you can output all of the form data. Then we will change the names and process the data so that it can be hooked up to our backend.
The text was updated successfully, but these errors were encountered: