FIXED [Was: Django docs failing]

2022-02-02 Thread Mike Dewhirst
The internet seems to be self healing! On 3/02/2022 3:47 pm, Mike Dewhirst wrote: The following error occurs when searching the docs for a term. It looks like the content delivery network node in Sydney Australia has had a certificate renewal glitch. Error 503 certificate has expired

Re: Barcode

2022-02-02 Thread Derek
We implemented bar coding on the back end - e.g., to generate a PDF which the client then prints. One library you can use for this is: https://pypi.org/project/treepoem/ On Wednesday, 2 February 2022 at 02:05:56 UTC+2 andres@uaiinpebi-cric.edu.co wrote: > Does anyone have experience with

Django docs failing

2022-02-02 Thread Mike Dewhirst
The following error occurs when searching the docs for a term. It looks like the content delivery network node in Sydney Australia has had a certificate renewal glitch. Error 503 certificate has expired certificate has expired Guru Mediation: Details: cache-syd10147-SYD 1643862123

Django docs failing with search docs - certificate has expired

2022-02-02 Thread Mike Dewhirst
Error 503 certificate has expired certificate has expired Guru Mediation: Details: cache-syd10147-SYD 1643862123 79021947 Varnish cache server -- Signed email is an absolute defence against phishing. This

Re: Potential bug: mysql-connector-python Django 3.2.11 and third-party packages that populate the Admin Site

2022-02-02 Thread Lakshyaraj Dash X-D 25
Use only the mysqlclient package to populate your admin site with MySQL database. You can watch this tutorial also : https://youtu.be/SNyCV8vOr-g On Thu, Feb 3, 2022, 06:19 Richard Mayebo wrote: > Platform: Observed on Ubuntu 20.04 > > >1. Install MySQL (Observed on 5.7 and 8.0) >2.

Potential bug: mysql-connector-python Django 3.2.11 and third-party packages that populate the Admin Site

2022-02-02 Thread Richard Mayebo
Platform: Observed on Ubuntu 20.04 1. Install MySQL (Observed on 5.7 and 8.0) 2. Create a Virtual environment using venv, and activate it. 3. Install Django 3.2.11 4. Install mysql-connector-python (Observed on 8.0.26 and 8.0.28) 5. Install django-easy-audit and/or django-axes

migrate exception if multiple databases migrated in a specific order

2022-02-02 Thread Robert Leach
I just added a second database to our project and was questioning my sanity when I kept getting the exception below in the remote github action tests only (not locally). I eventually noticed that I was doing the migrations in the reverse order locally. Once I noticed that, I was able to both

help creating a nested serializer using drf

2022-02-02 Thread ola neat
good day guys, i'm working on a project and i'm creating mulitiple model linked using foriegnKey field but i'm getting a relatedManager object has no attribute id err below is the link to my question on slack, hope anyone can help out

Re:

2022-02-02 Thread sebasti...@gmail.com
You insert following in your base template: {% if messages %} {% for message in messages %} {{ message|safe }} {% endfor %} {% endif %} {% if form.errors %} {% for key, value in form.errors.items %}

Multiple Choices as Label

2022-02-02 Thread sebasti...@gmail.com
Hello, I want in Listview on left side a filterform, where i can filter after sizes and/or colors. This are Multiple Choices Fields. I have attached a image where this fields are shown. For example XS has Key 1 and XL Key 2 and Color Black have Key 1 then i want when user clicks on size XS,XL

Re:

2022-02-02 Thread Prasad Ajmire
Gautam https://www.digitalocean.com/community/tutorials/how-to-send-web-push-notifications-from-django-applications refer above link probably this will help you On Wed, Feb 2, 2022 at 9:42 PM Gautam Ankul wrote: > How to use fee due notifications in django something helpe > > -- > You

Re:

2022-02-02 Thread Kasper Laudrup
On 02/02/2022 17.11, Gautam Ankul wrote: How to use fee due notifications in django something helpe The same way you use any notifications in django anything hehe -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this

[no subject]

2022-02-02 Thread Gautam Ankul
How to use fee due notifications in django something helpe -- 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

RES: Help

2022-02-02 Thread Fernando Jover
So thank you Sebastian! ;o) Enviado do Email para Windows De: Sebastian JungEnviado:quarta-feira, 2 de fevereiro de 2022 12:30Para: django-users@googlegroups.comAssunto: Re: Help You have a package https://pypi.org/project/django-emoji/ installed and now you must in yozr settings.py set this

Encryption in Django Field

2022-02-02 Thread Vivek Kumar Singh
Is there a way we can encrypt the value in the field value and decrypt it when user pass the correct password my model -> data -> charfield password -> charfield -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group

Re: Help

2022-02-02 Thread Sebastian Jung
You have a package https://pypi.org/project/django-emoji/ installed and now you must in yozr settings.py set this variable Fernando Jover schrieb am Mi., 2. Feb. 2022, 16:26: > Hi guys! > > > > i am learn Pythonand Pycharm show me this: > > > > raise ImproperlyConfigured( > >

Help

2022-02-02 Thread Fernando Jover
Hi guys!  i am learn Pythonand Pycharm show me this: raise ImproperlyConfigured(django.core.exceptions.ImproperlyConfigured: Requested setting EMOJI_IMG_TAG, but settings are not configured. You must either define the environment variable DJANGO_SETTINGS_MODULE or call settings.configure()

Re: web page blank

2022-02-02 Thread kka kar
I recreated the project and changed the view function to the below, and it now works fine for me: def home(request): context = { 'posts': post } return render(request, 'home.html', context) On Wednesday, February 2, 2022 at 8:23:46 AM UTC devfem...@gmail.com wrote: > Is it working fine for

Django cache template

2022-02-02 Thread Dev femibadmus
How do I not allow Django to cache template, data doesn't change until several refresh have used @never_cache and cache_control doing everything well but still not working On Tue, Feb 1, 2022, 08:59 Mariusz Felisiak wrote: > Details are available on the Django project weblog: > >

Re: web page blank

2022-02-02 Thread Dev femibadmus
Is it working fine for you? If not url blog/home.html? On Wed, Feb 2, 2022, 08:08 Sebastian Jung wrote: > Hello, > > Please try: > > context = { > 'posts': post > } > > 'Delvin Alexander' via Django users > schrieb am Mi., 2. Feb. 2022, 06:59: > >> Hello everyone, >> >> I am

Re: Resource leaks from FieldFile's implicit open?

2022-02-02 Thread Antonis Christofides
I think that the documentation is not entirely clear. I wouldn't say that the object "wrapped by" FieldFile is "a wrapper around the result of" Storage.open(). It is actually FieldFile.open() that is a wrapper around Storage.open(). Therefore I think I'd rephrase as follows: FieldFile is a