Forums

error on page registretion user

IntegrityError at /register/ (1048, "Column 'last_login' cannot be null")

why ???

This is not pythonanywhere specific error. This is related to UserModel of Django. Please ask this on stackoverflow with more details and with code.

what's stackoverflow ?

<html lang="ru">

<html> <head> <title>Регистрация</title> </head> <body> <form action="" method="post"> {% csrf_token %} <!-- as_p для того, чтобы каждый элемент формы был с новой строки --> {{ form.as_p }} <button type="submit">Зарегистрироваться</button> </form> </body> </html>

Stackoverflow is a Q & A site for programmers. stackoverflow.com.

Я устанавливал джанго в 1.8 почем стоит 1.3.7???

I installed Django in 1.8 how much does it cost 1.3.7 ???

I'm guessing that you're asking why your web app is running 1.3.7 and not 1.8. To use 1.8, you'll need to create a virtualenv and install it there and then use the virtualenv for your web app. There is documentation for all of these on the help pages.