Re: Stuck

2022-03-28 Thread Kelvin Sajere
You don’t have default.jpg in your media folder. Add jpg image named default in the media folder. On Mon, Mar 28, 2022 at 5:34 AM 'Delvin Alexander' via Django users < django-users@googlegroups.com> wrote: > Hello everyone, > > I am trying to register a new user by watching the Django tutorial. I

Vue js

2022-03-28 Thread Let's Get Going
Any vue js expert here? I need some 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 t

Re: Stuck

2022-03-28 Thread rahul sharma
Cd comand and app name.. On Mon, Mar 28, 2022, 11:57 Samapika Nayak wrote: > you need to configure the media files in settings.py > MEDIA_URL = "/media/" > MEDIA_ROOT = BASE_DIR / "media" > also need to configure it in project level urls.py > > if settings.DEBUG: > urlpatterns += static(settings

Favicon.ico error!

2022-03-28 Thread Md Anzar
Hi, all. I am try to include favicon file in website logo but getting image in body of the page.[image: Screenshot from 2022-03-28 11-08-12.png] Please give suggestion. -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this g

Re: runserver not working

2022-03-28 Thread Abinash Mandal
Dear sir, Recently i have faced the same problem , what i did, i close those apps and uninstall completely (vscode and python) remember to uninstall vs you have to delete the extension files from app data which is hidden , and after delete i restart the pc , then again install , is solv

Re: runserver not working

2022-03-28 Thread Abinash Mandal
https://stackoverflow.com/questions/58661812/django-python-manage-py-runserver-not-working On Tue, Mar 22, 2022 at 10:37 AM 'Delvin Alexander' via Django users < django-users@googlegroups.com> wrote: > would anyone know why my "manage.py runserver" is not working? > > Every time i try running it

Set value automatically to input field

2022-03-28 Thread KOUASSI JACOB KRA
Hello all, I begin with django and i'm trying set calculate value to a field in django admin. I have 3 fields : quantity, price and total_httc. what I want is that after entering the values ​​of quantity and price the total_httc is filled in automatically. total_httc = quantity * price. -- Y

Re: Vue js

2022-03-28 Thread Gobi Dasu
I'd recommend talking to Adeoluwa, Frank, and Muhwezi from these Vue developers from ldtalent.org/client/select_engineers/Vue.js/ I've enjoyed working with them. Regards, Gobi On Mon, Mar 28, 2022, 00:28 Let's Get Going wrote: > Any vue js expert here? > I need some help. > > -- > You received

Difference in datetime with timezone

2022-03-28 Thread Andrés Alvarez
I need to save some fields in my database in the format YYY-MM-MM 00:00:00+00. So I decide to do this: field_to_save = datetime.combine(date_to_save, time.min, pytz.timezone(TIME_ZONE)) in settings.py I have: TIME_ZONE = 'America/Mexico_City' USE_I18N = True USE_L10N = True USE_TZ = True My mode

Re: Difference in datetime with timezone

2022-03-28 Thread Antonis Christofides
Hello, 1. Please copy your code exactly. Is it really "pytz.timezone(TIME_ZONE)"? Or is it "pytz.timezone(*settings.*TIME_ZONE)"? If it is the first one, please include the definition or importing of TIME_ZONE. 2. Please pretty-print your dictionary. You can use pprint for that. If it do