Re: custom list_display in admin - problem in production server

2021-03-05 Thread dupakoor kannan
>>>First of all, create a new thread instead of just highjacking an existing one. I have created this thread. I didn't use the existing thread. >>>Second of all, set up some logging on your development server: Thanks for the suggestion. I will add logging and look for the error message. Thank

Re: custom list_display in admin - problem in production server

2021-03-05 Thread Kasper Laudrup
On 05/03/2021 17.01, dupakoor kannan wrote: I have a form where users submit protein sequences that are stored in the user_submission model. In Django admin, I have added a custom list display naming_algorithm (like below). It takes the obj. sequence and runs an external script and displays the

RE: custom list_display in admin - problem in production server

2021-03-05 Thread dupakoor kannan
I have a form where users submit protein sequences that are stored in the user_submission model. In Django admin, I have added a custom list display naming_algorithm (like below). It takes the obj. sequence and runs an external script and displays the output in HTML. It works locally well. When I t