Re: Adding csv as models

2022-09-23 Thread Sajanraj T D
You can use js datatable to render csv or what ever you want in the table format. You can also upload data as csv in file upload in model form. If you want to render csv, then it should transform to json format and pass via jsonresponse. Or httepresponse using mimetype. On Fri, 23 Sep, 2022, 7:20

Re: Adding csv as models

2022-09-23 Thread Thomas Lockhart
This is a very broad question so perhaps you are the stage of choosing the tools. The workflow, handling historical data, managing updates and replacement data, etc are things to consider for a production system so you’ll need to deal with those design questions. For my most recent system I do

Adding csv as models

2022-09-23 Thread Preethy P Johny
Hello All, I am new to Django and currently in the mid of a project. I am creating a dashboard for a hospital and the data is in the form of a csv/xls. I have rendered the the interactive graphs which I need to display on the dashboard, however on the jupyter notebook. How can I integrate it in