Re: - CRUD To Learning

2022-05-13 Thread Pradeep Chowdhary
django for everybody by Dr Charles Severance DJ4E - Django for Everybody Another site I found useful is a series by Corey Shafer Python Django Tutorials - Full Series - CoreyMS On

Re: Images

2022-05-13 Thread Boris Pérez
If the images files are sotored in static: {% load static %} El vie, 13 may 2022 a las 10:03, Nicolas Passarini (< nicolaspassar...@gmail.com>) escribió: > how do you refer to the object in the template? > > El martes, 10 de mayo de 2022 a la(s) 09:58:56 UTC-3, narsh...@gmail.com > escribió: >

Allocating items to users

2022-05-13 Thread 'dtdave' via Django users
I have the following code: from django.conf import settings from django.db import models class AccountManager(models.Model): account_manager = models.ForeignKey( settings.AUTH_USER_MODEL, on_delete=models.PROTECT, null=True, blank=True ) class Meta: verbose_name = 'Ac

Django deploy Apache

2022-05-13 Thread Nicolas Passarini
Hello, i ve deployed a django app in apache. the problem is that i works for 5 minutes and then it stops responding. -- 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 emai

Re: Images

2022-05-13 Thread Nicolas Passarini
how do you refer to the object in the template? El martes, 10 de mayo de 2022 a la(s) 09:58:56 UTC-3, narsh...@gmail.com escribió: > You change the names of the pictures in the separate folder then copy them > in a static folder then change the picture file names in the template > folder then