Questions tagged [django-statistics]
10 questions
6
votes
1 answer
Django CSS Background Image using STATIC_URL
I just changed my storage backend to Amazon S3, and I realized that my background was not loading for my site. I looked and realized that in my CSS (SASS actually) I had specified the background URL (static/mysite/images/background.gif).
I am…

saul.shanabrook
- 3,068
- 3
- 31
- 49
2
votes
2 answers
Static files don't load in django
I have stopped creating new project with django 1.1 and from that time was only working on already created applications. Since then I guess that static serving somehow changed (project is using Django 1.2.4). I'm struggling for few hours and with no…

euklemo
- 21
- 1
- 3
2
votes
1 answer
Modeling django model statistics
I'm working on a questionnaire model for django that should be maintainable by someone with no programming experience, so I've spent a lot of time crafting my models to compensate for minor details.. Now I want to unlock the potential of SQL…

steve-gregory
- 7,396
- 8
- 39
- 47
1
vote
2 answers
Django somehow accesses the static files even after i had deleted the whole static folder
I am new to Django, I had placed the static files in the project level static folder and even in multiple applications inside the app/static/app directory. Everything was working fine until I decided to delete few of the static files. The project is…

Murad Khateeb Abbasi
- 71
- 1
- 1
- 8
1
vote
2 answers
django gui for statistical analysis of data
Im trying to setup situation where users of application can do statistical analysis of data.
There are 3 tables, users, exams, polls
I should have gui to build custom queries, like these:
users born between 1930 and 1940, that have 3 exams taken;…

damir
- 1,898
- 3
- 16
- 23
1
vote
2 answers
Django hosting static files on the server
I am trying to deploy my Django project on the server. But, when I use it, the static file on Django can not be read correctly
I deploy my project on Debian server. The static file of course in same server, I have succeeded in deploying my project.…

ranggatry
- 125
- 1
- 15
0
votes
1 answer
Static files not working in Django
My static files were absolutely working fine, but yesterday I tried using the app allauth and since then my static files are not being displayed. It is not showing any css or js. I tried commenting the allauth app and even then it does not work.…

Sachin
- 3,672
- 9
- 55
- 96
0
votes
1 answer
How can I add CKeditot in django ? Can anyone explain step by step?
When I tried to run python manage.py collectstatic it was now working.enter image description here
I just expecting that how to add Richtexteditor in in static files

Harshiv Joshi
- 11
- 1
0
votes
0 answers
Django staticfiles files problems
I have problem with Django static files. Everything works fine but when I want to change something in CSS or an image or JS nothing is happening.
In settings.py I have this
# https://docs.djangoproject.com/en/3.0/howto/static-files/
STATIC_URL =…
0
votes
1 answer
statistical data to HTML tables (filter/sort/aggregate) and charts using django
I have lots of tables with statistical data (environment related) and wondering if there are any existing django app that will let me quickly produce charts i.e. sort/filter type of functionality. is there any short cuts..
This data will only be…
Gina Svensson