mysqld --skip-grant-tables
mysql -u root mysql
UPDATE user SET Password=PASSWORD('my_password') where USER='root';
FLUSH PRIVILEGES;
def getRegData(user, title, name):
t = Template('$title *$name* \n Имя клиента: *$fullname* \n VIN-номер:*$vin* \n Телефон: *$phone* \n Комментарии: *$doit*')
return t.substitute({
'title': title,
'name': name,
'fullname': user.fullname,
'vin': user.vin,
'phone': user.phone,
'doit': user.doit,
})