Re: static error in the django

2023-02-15 Thread Aswani lns
How you write the url. load static files in django be like On Wednesday, February 15, 2023 at 7:12:43 PM UTC+4 vamsi neyyala wrote: > /static/%20/js/script.js HTTP/1.1" 404 1803' > why i am getting the error > > -- You received this message because you are subscribed to the Google Groups "Dj

Re: I am unable to hash my password.

2023-02-15 Thread Eshwar pandu
On Fri, 4 Nov 2022 at 08:01, ritik sahoo wrote: > your super_staff is not active (blank=True) > > On Thu, Nov 3, 2022 at 12:06 PM Saksham Khanal > wrote: > >> Here you go >> On Wednesday, 2 November 2022 at 9:12:54 pm UTC+5:45 hubak...@gmail.com >> wrote: >> >>> Hi Saksham, please let us see yo

static error in the django

2023-02-15 Thread vamsi neyyala
/static/%20/js/script.js HTTP/1.1" 404 1803' why i am getting the error -- 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.co

Re: In my html page shows an error like this when click on logout button

2023-02-15 Thread Arvind Barge
might be you spelling is wrong http://127.0.0.1:8000/credentails/logout * "here you use "credentails "* and url path you use admin/ [name='demo'] *credentials*/ ^static\/(?P.*)$ ' both should be same On Monday, 23 January 2023 at 01:18:57 UTC+

Asgi daphne in iis

2023-02-15 Thread Aswani lns
I tries to publish my application in iis server. That running under the asgi daphne. But it is not working . When I tried to call the socket using wss always get connection failed error in browser. Any help will be appreciated. Thanks -- You received this message because you are subscribed t

Django admin only one group per user

2023-02-15 Thread Joao Frankmann
I am creating a customised Django Admin and I want to restrict users to be associated to no more than one group. I am using Django 4.1 and Python 3.11 admin.py: ``` from django.contrib import admin from typing import Set from django.contrib.auth.models import User from django.contrib.auth.admin