Re: Keycloak & Django Setup Error - "UNIQUE constraint failed: auth_user.username" & usernames are being hashed

2021-10-05 Thread DJANGO DEVELOPER
you're facing this error because django receives nique usernames. so you
are not allowed to create another username with the same username.

On Wed, Oct 6, 2021 at 1:36 AM Ammon Quackenbush  wrote:

>
> I am setting up keycloak for a django project and this is the error I
> receive:
>
>
> IntegrityError at /oidccallback/UNIQUE constraint failed:
> auth_user.usernameRequest Method:
> GET
>
> It looks like when I log in, keycloak tries to create my user again, even
> though my user is in the database.
>
> Also, my usernames are hashed in the auth_user table in the database.
>
> This is my code in my settings.py:
>
> DATABASES = {
> 'default': {
> 'ENGINE': 'django.db.backends.sqlite3',
> 'NAME': BASE_DIR / 'db.sqlite3',
> }
> }
>
> I also tried setting the OIDC_CREATE_USER setting to False but that only
> prevented django from from detecting login sessions (which still were
> created properly).
>
> Any ideas on what is going wrong and how I can fix it?
>
> --
> 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 this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/6be23087-ab54-4bfb-8a57-1bc8fbe35359n%40googlegroups.com
> 
> .
>

-- 
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 this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAKPY9pmEdZCt%2BG0JH-Yy8t6YOEVZBnikWritg0xxuPxj4Bbhkg%40mail.gmail.com.


Django Permission

2021-10-05 Thread Aadil Rashid
I am creating custom permission in my Django myapp's module with the 
follwing code;

from myapp.models import BlogPost
from django.contrib.auth.models import Permission from 
django.contrib.contenttypes.models import ContentType 

content_type = ContentType.objects.get_for_model(BlogPost) 

permission = Permission.objects.create(
codename='can_publish', 
  name='Can Publish Posts', 
  content_type=content_type, )

when i use this permission in my views, i get the following error,

File 
"/home/aadil/.local/share/virtualenvs/crawling_next-ao7NwWLu/lib/python3.8/site-packages/django/db/backends/sqlite3/base.py",
 
line 423, in execute

return Database.Cursor.execute(self, query, params)

django.db.utils.IntegrityError: UNIQUE constraint failed: 
auth_permission.content_type_id, auth_permission.codename

I am new to djagno please help??

-- 
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 this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/205b19a9-0e1c-4491-baf3-f63bf4045194n%40googlegroups.com.


Re: ModuleNotFoundError: No module named 'tempfile'

2021-10-05 Thread Kasper Laudrup

On 05/10/2021 17.20, Olalekan Alashe wrote:
Pls ,How can i fixed this error (ModuleNotFoundError: No module named 
'tempfile').i wanted to install Django with this command "python -m pip 
installs Django" .I have python 3.8,3.7.3.9 on my system.




The tempfile module is part of the Python standard library:

https://docs.python.org/3/library/tempfile.html

I would guess you have somehow messed up your Python installation(s), 
but without any further information it's really hard to help you.


How did you install three different Python versions and how do you 
select which one to run?


Kind regards,

Kasper Laudrup

--
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 this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/2f69b7fb-67bf-db15-0585-639b1aac9911%40stacktrace.dk.


OpenPGP_0xE5D9CAC64AAA55EB.asc
Description: OpenPGP public key


OpenPGP_signature
Description: OpenPGP digital signature


ModuleNotFoundError: No module named 'tempfile'

2021-10-05 Thread Olalekan Alashe
Pls ,How can i fixed this error (ModuleNotFoundError: No module named 
'tempfile').i wanted to install Django with this command "python -m pip 
installs Django" .I have python 3.8,3.7.3.9 on my system.

Thank you.

-- 
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 this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/61bb197d-5aed-4e89-8700-ddcf367ae67an%40googlegroups.com.


Listing and Searching fields in another table

2021-10-05 Thread Iyanuoluwa Loko


Good day, I would like to use the list_display and search_fields functions 
in one table on the Django admin page to display and search for a field in 
another table. Could I please get any pointers on how to go about this? 

 

-- 
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 this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/607e3da7-7c4f-49e8-a87a-41421c464355n%40googlegroups.com.


TemplateDoesNotExist at /catalog/books/

2021-10-05 Thread Никита Назаров


Hello!
I’m beginner in Django. I do Django Tutorial from Mozilla.
I get TemplateDoesNotExist at /catalog/books/ . Could you help me?. I don’t 
understand how to resolve it.

*/catalog/urls*

from django.urls import path

from . import views

urlpatterns = [

path('', views.index, name='index'),

path('books/', views.BookListView.as_view(), name='books'),

path('book/', views.BookDetailView.as_view(), 
name='book-detail'),

]

*catalog/models*

# Used to generate URLs by reversing the URL patterns

from django.urls import reverse

from django.db import models

from django.urls import reverse

import uuid

# Create your models here

class Genre(models.Model):

"""Model representing a book genre (e.g. Science Fiction, Non 
Fiction)."""

name = models.CharField(

max_length=200,

help_text="Enter a book genre (e.g. Science Fiction, French Poetry 
etc.)"

)

def __str__(self):

"""String for representing the Model object (in Admin site etc.)"""

return self.name

class Book(models.Model):

"""Model representing a book (but not a specific copy of a book)."""

title = models.CharField(max_length=200)

author = models.ForeignKey('Author', on_delete=models.SET_NULL, 
null=True)

# Foreign Key used because book can only have one author, but authors 
can have multiple books

# Author as a string rather than object because it hasn't been declared 
yet in file.

summary = models.TextField(

max_length=1000, help_text="Enter a brief description of the book")

isbn = models.CharField('ISBN', max_length=13,

unique=True,

help_text='13 Character https://www.isbn-international.org/content/what-isbn'

  '">ISBN number')

genre = models.ManyToManyField(

Genre, help_text="Select a genre for this book")

# ManyToManyField used because a genre can contain many books and a 
Book can cover many genres.

# Genre class has already been defined so we can specify the object 
above.

language = models.ForeignKey(

'Language', on_delete=models.SET_NULL, null=True)

class Meta:

ordering = ['title', 'author']

def display_genre(self):

"""Creates a string for the Genre. This is required to display 
genre in Admin."""

return ', '.join([genre.name for genre in self.genre.all()[:3]])

display_genre.short_description = 'Genre'

def get_absolute_url(self):

"""Returns the url to access a particular book instance."""

return reverse('book-detail', args=[str(self.id)])

def __str__(self):

"""String for representing the Model object."""

return self.title

class Language(models.Model):

name = models.CharField(

max_length=50, help_text="Enter the book's natural language (e.g. 
English, French, Japanese etc.)")

def __str__(self):

return self.name

class BookInstance(models.Model):

id = models.UUIDField(primary_key=True, default=uuid.uuid4,

  help_text="Unique ID for this particular book 
across whole library")

book = models.ForeignKey('Book', on_delete=models.SET_NULL, null=True)

imprint = models.CharField(max_length=200)

due_back = models.DateField(null=True, blank=True)

LOAN_STATUS = (

('m', 'Maintenance'),

('o', 'On loan'),

('a', 'Available'),

('r', 'Reserved'),

)

status = models.CharField(max_length=1, choices=LOAN_STATUS,

  blank=True, default='m', help_text='Book 
availability')

class Meta:

ordering = ["due_back"]

def __str__(self):

"""

String for representing the Model object

"""

return '%s (%s)' % (self.id, self.book.title)

class Author(models.Model):

"""

Model representing an author.

"""

first_name = models.CharField(max_length=100)

last_name = models.CharField(max_length=100)

date_of_birth = models.DateField(null=True, blank=True)

date_of_death = models.DateField('Died', null=True, blank=True)


def get_absolute_url(self):

"""

Returns the url to access a particular author instance.

"""

return reverse('author-detail', args=[str(self.id)])


def __str__(self):

"""

String for representing the Model object.

"""

return '%s, %s' % (self.last_name, self.first_name)

*catalog/views*

from django.views import generic

from django.shortcuts import render


# Create your views here.

from .models import Book, Author, BookInstance, Genre



def index(request):

"""View function for home page of site."""


# Generate counts of some of the main objects

num_books = Book.objects.all().count()

num_instances = BookInstance.objects.all().count()


# Available books (status = 'a')

num_instances_available = 

Keycloak & Django Setup Error - "UNIQUE constraint failed: auth_user.username" & usernames are being hashed

2021-10-05 Thread Ammon Quackenbush

I am setting up keycloak for a django project and this is the error I 
receive:


IntegrityError at /oidccallback/UNIQUE constraint failed: 
auth_user.usernameRequest 
Method:
GET

It looks like when I log in, keycloak tries to create my user again, even 
though my user is in the database.

Also, my usernames are hashed in the auth_user table in the database.

This is my code in my settings.py:

DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': BASE_DIR / 'db.sqlite3',
}
}

I also tried setting the OIDC_CREATE_USER setting to False but that only 
prevented django from from detecting login sessions (which still were 
created properly).

Any ideas on what is going wrong and how I can fix it?

-- 
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 this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/6be23087-ab54-4bfb-8a57-1bc8fbe35359n%40googlegroups.com.


Re: How to port a Django web app in mobile (iOS & Android)

2021-10-05 Thread Ram
Thank you very much, Adeyemi & Princewill for suggestions.

Best Regards,
~Ram

On Tue, Oct 5, 2021 at 3:10 AM Adeyemi Deji  wrote:

> Hello, I'm not sure if this will work but it seems to relate to what you
> are trying to achieve. follow link below
>
> https://www.quora.com/How-do-we-convert-the-Django-web-application-into-an-Android-app
>
> On Tuesday, October 5, 2021 at 5:38:31 AM UTC+2 ram.mu...@gmail.com wrote:
>
>> Hi,
>>
>> We have a working WebApp developed with Django, Python and Vue.Js. The
>> application is working ok when it is opened in Mobile devices but we need
>> to do lot of tweaking UI to make it compatible to mobile devices everytime.
>> So we are looking for a way to create a mobile app and also need to update
>> the data irrespective of device that users use. Please let us know whether
>> this can be achievable?
>>
>> Best regards,
>> ~Ram
>>
> --
> 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 this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/51e8aaf0-e7f5-44c8-8742-b7368e215eb0n%40googlegroups.com
> 
> .
>

-- 
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 this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CA%2BOi5F00pa0MCD66engXgYF0cqTx-SNAcLZ5kszmgLe8Cd3p%3DQ%40mail.gmail.com.


Re: Django bugfix release: 3.2.8

2021-10-05 Thread Dev femibadmus
Ok

On Tue, Oct 5, 2021, 9:01 AM Carlton Gibson 
wrote:

> Details are available on the Django project weblog:
>
> https://www.djangoproject.com/weblog/2021/oct/05/bugfix-release/
>
> --
> 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 this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/51B45B77-42FE-4E3A-A7F8-330B9D10F4FA%40gmail.com
> 
> .
>

-- 
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 this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAD9bWYwytGMgRs3GXepXXHS1b%3Do6VU1Wn73DeYXnKYCZVVeTeg%40mail.gmail.com.


Re: How to show views when an endpoint is called

2021-10-05 Thread Adeyemi Deji
Hi, what you are trying to achieve isn't clear to me. Kindly elaborate pls

On Sunday, October 3, 2021 at 4:30:31 AM UTC+2 iroegbu...@gmail.com wrote:

> Hello guys, thanks for helping the last time.
> I am trying to show course views on django admin.  Django is serving as an 
> API to a flutter app
>
> Am i to create another endpoint to count views? 
>

-- 
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 this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/d8a2-ace5-4360-812f-fcb9bd21208fn%40googlegroups.com.


Re: New to Django

2021-10-05 Thread Adeyemi Deji
Hi, I started roughly too. Began paying attention as it started getting 
interesting. Django documentation was actually wat got me started but 
before that I went through some pdfs, had a lot of that on my pc. The poll 
app in django documentation really helped, don't think I would be where I 
am today if I didn't go through building the poll app as I walk through the 
documentation. Also there is this guy on youtube, don't know if you have 
heard of Dennis Ivy, he is really awesome, his story really got me and I 
have never forgotten it till 
date. https://www.youtube.com/channel/UCTZRcDjjkVajGL6wd76UnGg

On Saturday, October 2, 2021 at 5:09:04 AM UTC+2 richluet...@gmail.com 
wrote:

> Hi, I want to learn django very well but tutorials like youtube videos, 
> books and pay for online courses are not really satisfying me that much . 
> So if I decide to learn django directly from the documentation will I learn 
> good enough to Intermediate and Advance level ?  if yes please help me with 
> an order path to follow. Thanks

-- 
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 this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/04006489-2726-4dea-b4cf-bd174ee96b7fn%40googlegroups.com.


Re: How to port a Django web app in mobile (iOS & Android)

2021-10-05 Thread Adeyemi Deji
Hello, I'm not sure if this will work but it seems to relate to what you 
are trying to achieve. follow link below
https://www.quora.com/How-do-we-convert-the-Django-web-application-into-an-Android-app

On Tuesday, October 5, 2021 at 5:38:31 AM UTC+2 ram.mu...@gmail.com wrote:

> Hi,
>
> We have a working WebApp developed with Django, Python and Vue.Js. The 
> application is working ok when it is opened in Mobile devices but we need 
> to do lot of tweaking UI to make it compatible to mobile devices everytime. 
> So we are looking for a way to create a mobile app and also need to update 
> the data irrespective of device that users use. Please let us know whether 
> this can be achievable?
>
> Best regards,
> ~Ram
>

-- 
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 this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/51e8aaf0-e7f5-44c8-8742-b7368e215eb0n%40googlegroups.com.


Re: from excel to postgesql

2021-10-05 Thread Adeyemi Deji
Hello, sure the link below will solve your problem.
https://pythoncircle.com/post/591/how-to-upload-and-process-the-excel-file-in-django/

On Tuesday, October 5, 2021 at 5:30:36 AM UTC+2 nader...@gmail.com wrote:

> I have a site on heroku up and running, database postgresql, the models 
> have a lot of relations.
> I want to add data from excel file about 400 excel rows by code in django.
>
> How can I access the excel file to read the data? or suggest another way 
> for the job to be done.
>
> Thanks for your help.
>
> Nader
>
>

-- 
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 this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/14704a8a-7d78-4f10-b18d-c767d78ab218n%40googlegroups.com.


Re: How to port a Django web app in mobile (iOS & Android)

2021-10-05 Thread Princewill Kelechi
I think the best way to go about it is by creating an api endpoint with
either django rest framework or django graphene, then consume this apis
from your mobile app on android or iOS

The mobile app can be developed in either react native or flutter

On Tue, Oct 5, 2021, 4:37 AM Ram  wrote:

> Hi,
>
> We have a working WebApp developed with Django, Python and Vue.Js. The
> application is working ok when it is opened in Mobile devices but we need
> to do lot of tweaking UI to make it compatible to mobile devices everytime.
> So we are looking for a way to create a mobile app and also need to update
> the data irrespective of device that users use. Please let us know whether
> this can be achievable?
>
> Best regards,
> ~Ram
>
> --
> 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 this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CA%2BOi5F1ieftwss1cJya3asLcJ_OpSbBm-OrwDtQPuKTA-ESq7A%40mail.gmail.com
> 
> .
>

-- 
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 this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAHfZ4gH698sJZ-TvVNyE5MNdMm0%2BYWc43K7Cvhd3CzCmXEuzVg%40mail.gmail.com.


Re: Django Query

2021-10-05 Thread Adeyemi Deji
You can read up the documentation regarding MPTT, sure to be useful.
https://django-mptt.readthedocs.io/en/latest

On Tuesday, October 5, 2021 at 10:05:42 AM UTC+2 eugenet...@gmail.com wrote:

> Is there any one with a typical example or tutorial  (of Django mptt) that 
> tolks on the similar  issue as mine and share with me? 
>
> regards, 
>
> On Tue, 5 Oct 2021 at 01:00, Sebastian Jung  wrote:
>
>> Hello Eugene,
>>
>> I think that django mptt can Store and display such a tree.
>>
>> Regards
>>
>> Eugene TUYIZERE  schrieb am Mo., 4. Okt. 2021, 
>> 20:29:
>>
> Team,
>>>
>>> Assume you have 3 tables PROVINCES, DISTRICTS, and SECTORS and you have 
>>> Province, District and Sector field names respectively in each table. 
>>>
>>> How can you display in the Django template the following table?
>>>
>>> Province District Sectors 
>>> A A1 A11 
>>> A12 
>>> A2 A21 
>>> A22 
>>> A3 A31 
>>> A32 
>>>
>>> Any assistance will be appreciated
>>> -- 
>>>
>> *TUYIZERE Eugene*
>>>
>>>
>>>
>>> Tel: (+250) 7 88 26 33 38, (+250) 7 22 26 33 38
>>>
>> -- 
>>> 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...@googlegroups.com.
>>> To view this discussion on the web visit 
>>> https://groups.google.com/d/msgid/django-users/CABxpZHsGxujwVUp3NEXBWjBnOahYuPOBZccU8O%2BvejowDYxxvg%40mail.gmail.com
>>>  
>>> 
>>> .
>>>
>> -- 
>> 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...@googlegroups.com.
>>
> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/django-users/CAKGT9mwz%3D0FA27Yr8xxiZPK6O4v9t1CwVFXNtr3DMK-xxobmKw%40mail.gmail.com
>>  
>> 
>> .
>>
>
>
> -- 
> *TUYIZERE Eugene*
>
>
>
> *Msc Degree in Mathematical Science*
>
> *African Institute for Mathematical Sciences (AIMS Cameroon)Crystal 
> Garden-Lime, Cameroon*
>
> Bsc in Computer Science
>
> *UR-Nyagatare Campus*
>
> Email: eugene@aims-cameroon.org
>eugenet...@gmail.com
>
> Tel: (+250) 7 88 26 33 38, (+250) 7 22 26 33 38
>

-- 
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 this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/bd62dc5d-1b53-4dbd-bbba-0b36c30679een%40googlegroups.com.


Re: Django Query

2021-10-05 Thread Eugene TUYIZERE
Is there any one with a typical example or tutorial  (of Django mptt) that
tolks on the similar  issue as mine and share with me?

regards,

On Tue, 5 Oct 2021 at 01:00, Sebastian Jung 
wrote:

> Hello Eugene,
>
> I think that django mptt can Store and display such a tree.
>
> Regards
>
> Eugene TUYIZERE  schrieb am Mo., 4. Okt. 2021,
> 20:29:
>
>> Team,
>>
>> Assume you have 3 tables PROVINCES, DISTRICTS, and SECTORS and you have
>> Province, District and Sector field names respectively in each table.
>>
>> How can you display in the Django template the following table?
>>
>> Province District Sectors
>> A A1 A11
>> A12
>> A2 A21
>> A22
>> A3 A31
>> A32
>>
>> Any assistance will be appreciated
>> --
>> *TUYIZERE Eugene*
>>
>>
>>
>> Tel: (+250) 7 88 26 33 38, (+250) 7 22 26 33 38
>>
>> --
>> 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 this discussion on the web visit
>> https://groups.google.com/d/msgid/django-users/CABxpZHsGxujwVUp3NEXBWjBnOahYuPOBZccU8O%2BvejowDYxxvg%40mail.gmail.com
>> 
>> .
>>
> --
> 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 this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CAKGT9mwz%3D0FA27Yr8xxiZPK6O4v9t1CwVFXNtr3DMK-xxobmKw%40mail.gmail.com
> 
> .
>


-- 
*TUYIZERE Eugene*



*Msc Degree in Mathematical Science*

*African Institute for Mathematical Sciences (AIMS Cameroon)Crystal
Garden-Lime, Cameroon*

Bsc in Computer Science

*UR-Nyagatare Campus*

Email: eugene.tuyiz...@aims-cameroon.org
   eugenetuyiz...@gmail.com

Tel: (+250) 7 88 26 33 38, (+250) 7 22 26 33 38

-- 
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 this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CABxpZHsjjwOhAJKQ35ke5LhGspo%2BTFrt%3Dgeiu-khGcDmKbbrAA%40mail.gmail.com.


Django bugfix release: 3.2.8

2021-10-05 Thread Carlton Gibson
Details are available on the Django project weblog:

https://www.djangoproject.com/weblog/2021/oct/05/bugfix-release/ 


-- 
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 this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/51B45B77-42FE-4E3A-A7F8-330B9D10F4FA%40gmail.com.