diff --git a/frontend/templates/supporter.html b/frontend/templates/supporter.html index b18b8d00..65bda5bd 100644 --- a/frontend/templates/supporter.html +++ b/frontend/templates/supporter.html @@ -58,8 +58,6 @@ To do: create topsection file for inclusion in multiple contexts, if needed figure out how to configure date display decide if we're even including date joined in profile -make it possible for users to create taglines - I changed UserProfile to be a foreign key relation on user. ok? add support for userpics crop/resize? other infrastructure we need? can we pull from twitter/fb? add support for twitter/fb/other links? @@ -69,7 +67,6 @@ add support for twitter/fb/other links? Goodreads & Librarything support If people lack homepage, etc., do we have greyed-out icons or no icons? if greyed-out, can they add in place by clicking on them? -make sure profile settings do something make sure we have the profile settings we need resurrect add/remove functionality be sure words display correctly @@ -127,6 +124,7 @@ how do I integrate the your wishlist thing with the tabs thing? I am ungluing + {% ifequal supporter request.user %}
@@ -164,6 +162,7 @@ how do I integrate the your wishlist thing with the tabs thing?
+ {% endifequal %}
diff --git a/frontend/views.py b/frontend/views.py index 531e6dc3..76c0fce4 100755 --- a/frontend/views.py +++ b/frontend/views.py @@ -71,6 +71,8 @@ def supporter(request, supporter_username): profile_form.save() else: profile_form = ProfileForm() + else: + profile_form = '' context = { "supporter": supporter,