Posts by Aipi • 111 points
3 posts
-
1
votes1
answer105
viewsA: what does "string" mean in CSS?
The type of CSS data string represents a string of characters. Strings are used in various CSS properties, such as content, font-family, and quotes. Syntax: The data type is composed of any number…
-
0
votes1
answer64
viewsA: Is it possible to migrate a web2py system to Django by maintaining the same database?
Django has a tool called inspectdb which can create the templates by entering the existing database. You can check the output by running this command: $ python manage.py inspectdb Save it as a file:…
-
-1
votes1
answer39
viewsA: Error with Django-blog-Zinnia users model
I believe you should set up the AUTH_USER_MODEL in his config/settings/common.py: AUTH_USER_MODEL = 'User.user'