chipy.org icon indicating copy to clipboard operation
chipy.org copied to clipboard

allow presenters to edit their email and released data

Open CarlFK opened this issue 10 years ago • 4 comments
trafficstars

http://www.chipy.org/profiles/edit/

phone too I guess, but I'm not sure what the point of it is.

class Presentor(CommonModel): email = models.EmailField(max_length=MAX_LENGTH, blank=True, null=True) phone = models.CharField(max_length=MAX_LENGTH, blank=True, null=True) release = models.BooleanField(default=False)

CarlFK avatar Mar 09 '15 15:03 CarlFK

useful files: https://github.com/chicagopython/chipy.org/blob/master/chipy_org/apps/profiles/templates/profiles/edit.html https://github.com/chicagopython/chipy.org/blob/master/chipy_org/apps/profiles/models.py

cjoshmartin avatar Feb 10 '21 16:02 cjoshmartin

Phone is useful for reaching out to presenters in emergencies.

raymondberg avatar Feb 10 '21 17:02 raymondberg

I'm actually not sure what release means now :D

raymondberg avatar Feb 10 '21 17:02 raymondberg

release = does the presenter(s)? give permission for a recording of their presentation to be made public. (posted on the internet)

the x=true here takes the place of printing a form, getting is signed and keeping it on file in someone's filing cabinet. No one wants to do that, and it turns out it isn't really needed as long as the presenter(s) are given the choice and their choice is stored somewhere (database.)

Here is an example of the form I used to get singed:

https://veyepar.nextdayvideo.com/main/release_agreements.pdf/467/15508/Outbreak_Outreach_How_COVID_broke_our_program_for_the_better.pdf

CarlFK avatar Feb 11 '21 16:02 CarlFK