Posts by Nathan • 113 points
8 posts
-
-1
votes1
answer77
viewsQ: Error in Xampp 3.22
Hello, I’ve been using Xampp for over 1 year and never had any problems with it, however hj had to format my desktop and reinstalled a newer version of Xampp, the 3.22, when starting it it presented…
-
0
votes2
answers1004
viewsA: What is the difference between Forms. Form and Forms.Modelform?
Exactly as it was said above p Modelform connects your Model to the Database, already the Form makes the connection of the Model with the Interface, the Views and Templates.
-
2
votes1
answer4751
viewsQ: Latex reference, IEEE model
Hello I am writing texts in latex by online editor Overleaf (https://www.overleaf.com/) which I think is very good. This one has several models of various articles, including in IEEE, which I am…
-
0
votes0
answers100
viewsQ: Gchart with Django
Hi I am developing a Django application that creates graphics. And I have implemented a line chart using Gcharts insert link description here but it only has one line, and in the example I’ve seen…
-
0
votes1
answer210
viewsQ: Search with OR in Django
Hello I’m developing my 1° application in Django and I’m having difficulty with more complex research in DB. Here is my MODEL: class Tag(models.Model): objects = GChartsManager() idtag =…
-
1
votes1
answer154
viewsQ: Error searching in Django
Hello I am creating a project on Jango and performing a search for a Taginfo based on a tag that has foreignkey for Taginfo. I’m getting the following error on line 99 from view. TypeError at…
-
4
votes2
answers738
viewsA: Problems trying to save to "POST" = "no-such-table" Django / Python database
Most likely you are trying to use a database that has not been updated yet. You used the commands? python manage.py makemigrations python manage.py migrate python manage.py syncdb These are to…
-
3
votes1
answer616
viewsQ: Queryset on Django without case-sensitive
I have a question about Querysets in Django. I need to search a field that’s a Charfield, only the research I’m doing appears to be case sensitive. And I wanted that when searching for 'Stack' the…