Re: Building reports in Django / Python

2021-04-24 Thread Eugene TUYIZERE
easily be constructed with >>> python. >>> >>> Hope this helps, >>> Benny >>> >>>> On Apr 24, 2021, at 3:04 PM, Andréas Kühne >>>> wrote: >>>> >>>>  >>>> Hi all, >>>> >>>&g

Re: Building reports in Django / Python

2021-04-24 Thread Benny M
Kühne wrote:  Hi all, I was wondering if anyone has any good resources for building reports in Django / Python. What I am trying to do is the following: * I have built a questionnaire motor - it works more or less like google forms and collects the input from 1 or more respondents to a

Re: Building reports in Django / Python

2021-04-24 Thread Andréas Kühne
ote: >>> >>  >> Hi all, >> >> I was wondering if anyone has any good resources for building reports in >> Django / Python. What I am trying to do is the following: >> * I have built a questionnaire motor - it works more or less like google >> forms

Re: Building reports in Django / Python

2021-04-24 Thread Benny M
, excel will accept a CSV, which can very easily be constructed with python. Hope this helps, Benny On Apr 24, 2021, at 3:04 PM, Andréas Kühne wrote:  Hi all, I was wondering if anyone has any good resources for building reports in Django / Python. What I am trying to do is the following: * I

Building reports in Django / Python

2021-04-24 Thread Andréas Kühne
Hi all, I was wondering if anyone has any good resources for building reports in Django / Python. What I am trying to do is the following: * I have built a questionnaire motor - it works more or less like google forms and collects the input from 1 or more respondents to a questionnaire. So far so

Re: Reports in Django

2021-01-17 Thread Damanjeet Singh
In project I am using https://pivottable.js.org On Sun, 17 Jan 2021, 13:29 Ali Sufyan, wrote: > Hi All: > > Do we have report making library like crystal reports > > -- > You received this message because you are subscribed to the Google Groups > "Django users" group. > To unsubscribe from this

Re: Reports in Django

2021-01-17 Thread ramadhan ngallen
Use reportlab or weasyprint as alternative to crystal reports they both depends on css On 17 Jan 2021, 16:29 +0300, Ali Sufyan , wrote: > Hi All: > > Do we have report making library like crystal reports >  -- > You received this message because you are subscribed to the Google Groups > "Django u

Re: Reports in Django

2021-01-17 Thread gabriela...@gmail.com
Why you don't try with reporlab ? It's very easy to use. The only things that i don't know if I can make a sub-reports like Crystal. That is very uselfully. Regards, gabrielaraya2...@gmail.com El domingo, 17 de enero de 2021 a las 10:29:20 UTC-3, alisuf...@gmail.com escribió: > Hi All: > >

Reports in Django

2021-01-17 Thread Ali Sufyan
Hi All: Do we have report making library like crystal reports -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscr...@googlegroups.com. To view

Re: Creating Reports in Django Admin Panel

2018-06-04 Thread Joseph Mutumi
Hello, You'll first need to create a custom admin page. Create your view and add it to the urls.py like normal. Then you extend the admin base template and display your aggregation in there: {% extends "admin/base_site.html" %} {% block title %}Stats title{% endblock %} {% block content %}Stats

Creating Reports in Django Admin Panel

2018-06-01 Thread Mukul Mantosh
How to create a report in django-admin panel of number of users added to the database in a day, week and month. Also, how many API calls for every particular API has been made in a day, week and month. -- You received this message because you are subscribed to the Google Groups "Django users"