The part about the terms of service is easy, just override that view's form 
in the urls:

from userena.forms import SignupFormTos

urlpatterns = patterns('',
    url(r'^accounts/signup/$','userena.views.signup', {'signup_form': 
SignupFormTos}),
    url(r'^accounts/', include('userena.urls')),
)

Now I'm going to try what Kurtis suggests about the privacy part.

On Sunday, June 24, 2012 11:45:56 PM UTC+2, Bastian wrote:
>
> Hi,
>
> I just installed Userena and it works fine. I would like to use the signup 
> form where the button for the terms of service appear but I can't find how. 
> And also when editing a user profile, there is a field called privacy, it 
> does not really make sense in my case so I set it up to default to Closed 
> but now I would like it to disappear from the editable fields in the 
> profile, how can I do that?
>
> Thanks for your help.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/django-users/-/hh4KkTXsyQkJ.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.

Reply via email to