Tagged Questions
1
vote
1answer
377 views
How to reset db in Django? I get a command 'reset' not found error
Following this Django by Example tutotrial here: http://lightbird.net/dbe/todo_list.html
The tutorial says:
"This changes our table layout and we’ll have to ask Django to reset
and recreate ...
0
votes
2answers
1k views
Django password reset form
I'd like users to be be able to reset their passwords via a link on my site. I'm trying to use the built in django password reset form, but having a little difficulty. I have the following included in ...
0
votes
1answer
167 views
reset form and errors when div is closed jquery
I have a popup div containing a form that when closed i would like the form to reset the errors and the fields within the form. I was planning on resetting the form in the disablePopup function. Other ...
0
votes
1answer
242 views
reset form when div is closed using ajax
how can i reset my form to its original state when i close a div
i am using ajax and django
one recommendation was to use a reset_recipe field in my form that if set to true will reset the recipe
...
0
votes
2answers
47 views
Resetting table values through DateTime in Django
I am attempting to create a voting database with an increasing number of names that are never deleted or reset. Votes are cast in the morning, and voting is closed around 10:00. I want to have a ...
0
votes
1answer
141 views
How can I reset and prepoulate all users in django?
I'm developing a django application with some complicated user interactions, so I need to do a lot of testing. Is there an easy way to clear out the Users table (and all associated tables) in the ...
7
votes
2answers
2k views
Django flush vs sqlclear & syncdb
Can anyone tell if there is a difference between
>manage.py flush # or reset
and
>manage.py sqlclear appname | python manage.py dbshell
>manage.py syncdb
3
votes
1answer
222 views
[django]Error: contenttypes couldn't be reset
I reset contenttypes prior to loading the fixture (Refer to Problems with contenttypes when loading a fixture in Django).
But contenttypes couldn't be reset:
...project_dir > manage.py reset ...
0
votes
2answers
671 views
Django Forgot Password function changing default email
I created a Forgot Password functionality for my website using the password_reset function that is built in Django
it sends an email like so:
You're receiving this e-mail because you requested a ...
0
votes
1answer
612 views
Forgot Password function, django
I followed the code here:
http://drumcoder.co.uk/blog/2010/apr/09/django-reset-password/
as well as here:
...
1
vote
2answers
803 views
Trigger password reset email in django without browser?
I want to be able to send a password reset email using django.contrib.auth.views.password_reset
but without using the browser - password_reset needs a populated form, is there a way I can create this ...