-
-
Notifications
You must be signed in to change notification settings - Fork 962
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
Link IndividualMember to user profile page when available #1738
Comments
I'm assuming this is the forum thread you meant? https://forum.djangoproject.com/t/what-is-the-technical-team-and-the-technical-advisory-team/36455 |
Yes, thank you! I have updated the proposal quite a bit also 👍 |
This is shiny and I like it. Great idea and proposal! [This can be a different ticket/issue/patch] Is there a good or reasonable alternative to Gravatar which I see linked up in the sidebar? Given the recent Automattic meltdown, I deleted my account and one use or advocate anything they touch. Which is a shame. I don't think this image quite captures how pale I really am. https://www.djangoproject.com/~jefftriplett/ |
First ideas that came in mind: the avatar from the GitHub user, since all contributors I think already have one account over there. Or we can add an |
You can fetch profile data for a user from this endpoint; https://api.github.com/users/marksweb Could have a templatetag to pull that from the api for the profile page? |
I propose:
accounts.models.Profile
has a newbio
text field which is displayed on the user profile page (example page: https://www.djangoproject.com/~sarahboyce/)members.models.IndividualMember
has a nullable FK field toUser
members.models.IndividualMember
is created without a linked account, it sends an email with a link to create an account on djangoproject.com to the new memberSend account invite
is available on theIndividualMember
admin edit/list pageAfter doing some admin to link existing
IndividualMember
to theirUser
account, and sending invite emails to members without an account, we can then have the DSF members page have the member names be links to their user profile pageSee related discussion: https://forum.djangoproject.com/t/what-is-the-technical-team-and-the-technical-advisory-team/36455
The text was updated successfully, but these errors were encountered: