I'm trying to incorporate django-robokassa into my project. When python manage.py migrate gives an error
ImportError: No module named south.db Django version 1.9.5, do not use South. How to solve a problem?
The django-robokassa application uses South migration, not Django migration. If you are not using South, then just try: python manage.py syncdb
Also, robokassa has changed the form submission URL, change in conf.py to:FORM_TARGET = u'https://auth.robokassa.ru/Merchant/Index.aspx'
python manage.py makemigrations django-robokassa , and then migrate. You may have to first delete the migrations directory, which is for south. - betonimig{% extends 'base.html' %}{% block content %}Оплата прошла успешно!{% endblock %} - betonimigSource: https://ru.stackoverflow.com/questions/512513/
All Articles