Re: Allow scroll on jQuery fancy Table

2021-12-30 Thread Joel Tanko
A simple tweak I would use is to find the elements id using DEV tools and set the element{ overflow: auto } using css On Wed, Dec 8, 2021, 1:10 PM Eugene TUYIZERE wrote: > Dear Team, > > I am using jquery fancyTable in the django app but I searched everywhere > and I did not find how to allow

Re: Not sure if I am doing django-paypal correctly

2021-12-30 Thread Joel Tanko
The code is really simple to implement, but I don't think the explanation was intuitive enough. You would need to create a signal like so #hooks.py from django.dispatch import Signal success_signal = Signal(providing_args=[]) #views.py from .hooks import success_signal ... # after payment

Re: Automatic subdomain for each user

2021-12-30 Thread Joel Tanko
Check out the django-hosts package, the docs are pretty explanatory and easy to use. You'd also want to add '.yourdomain' to the allowed_hosts list and it doesn't work with '127.0.0.1' as its harder for if to figure out the sub-domain, if you want to use it on your development server use

"include super" with django templates?

2021-12-30 Thread Nick Farrell
I would like to extend a django template which is used via the include macro. That is, I want to add additional output before or after what would otherwise be emitted. With the normal {% block %} syntax, it's easy to use super to follow the template heirachy similar to __mro__ - but to my

Re: Automatic subdomain for each user

2021-12-30 Thread Nick Farrell
Once you have the TLS certificates and routing working, can't you make a tiny piece of middleware which takes the hostname (provided via nginx/apache in a request header) and add an attribute on the request which corresponds to your virtual site? e.g. (dodgy untested code follows): def

Re: Not sure if I am doing django-paypal correctly

2021-12-30 Thread lone...@gmail.com
Hey man, beggars cannot be choosers! Thank you! On Thursday, December 30, 2021 at 1:28:12 AM UTC-5 Yorben Verhoest wrote: > Hello > > I'm a Django Noobie and maybe I'm completely wrong about this but in my > app named "core", I have a file called apps.py where I register my signals. > I just

Re: Automatic subdomain for each user

2021-12-30 Thread Sherif Adigun
Thank you for your detailed response. Following your response point by point with few additional googling, it works as expected. On cpanel: I created a subdomain called * Then I chose document root as the main Django root. (This is needed so that letsencrypt can automatically create a

Re: Automatic subdomain for each user

2021-12-30 Thread Sherif Adigun
Thank you very much for you guidance. I have been able to make it work using Django-hosts on my local. Still trying to fix it out to work on my shared hosting if possible On Thu, Dec 30, 2021, 10:29 AM Sherif Adigun wrote: > Thank you @Tim. Django subdomains looks promising but it's outdated.

Re: dotenv - django-environ - etc

2021-12-30 Thread Nagaraju Singothu
Hii All, I want freelancing projects works On Wed, 29 Dec 2021, 1:29 am bnmng, wrote: > Hi everyone, > > I can't wrap my mind around why having my settings in a .env file is more > secure than having them in a local_settings.py file, or why one of the > various methods is better than another

Re: dotenv - django-environ - etc

2021-12-30 Thread bnmng
Thank you for the replies. I think I'm getting a better understanding of this. I had been keeping the .env file in the project folder with the settings file, which seemed to offer no extra security - hardly worth only being able to store settings as strings (using django-environ). I'll take

Re: Automatic subdomain for each user

2021-12-30 Thread Sherif Adigun
Thank you @Tim. Django subdomains looks promising but it's outdated. It uses codes and imports of django< v2 I have checked django-hosts but it looks as if it can be used for only predefined list of subdomains. Please help clarify this doubt. Thank you for your time On Thursday, December