please help me to solve

2022-07-26 Thread Chelsea Fan
Hello, such a question, we plan to implement an application for Android, for a TV and for a phone, it will be an application with the broadcast of different channels, you will need to stream somehow, i.e. there is no direct access. which technologies I 'v to use for it? -- You received this messa

Re: please help me to solve

2022-07-26 Thread Chelsea Fan
thanks bro On Wed, Jul 27, 2022 at 7:36 AM Abdul Qoyyuum wrote: > This is a Django group. I don't know how its implemented in Android but > for your use case, you will need to learn Socket programming. Other than > that, I can't help you. Sorry. > > On Tue, Jul 26, 20

Re: Looking for a Django firm

2022-09-14 Thread Chelsea Fan
I am interested, from Turkmenistan On Wed, Sep 14, 2022 at 9:49 PM Damanjeet Singh wrote: > Hello Mike, > > I am interested and from UK. > > If you let me know your email, I can forward my profile to you. > > Regards > Damanjeet > mailtoda...@gmail.com > > On Tue, 13 Sept 2022, 01:01 Mike Dewhir

Please help

2023-01-15 Thread Chelsea Fan
Hello guys, how can I return blurhash link in django, can I use Pillow or any other python tools? -- 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+un

django model method

2023-02-09 Thread Chelsea Fan
hello guys, Is it possible to use model method value to ordering model objects in meta class? class Post(models.Model): title = models.CharField(max_length=255, verbose_name="ady") text = RichTextField(verbose_name="text") tagList = models.ManyToManyField(Tag, verbose_name="taglar", re

Re: django model method

2023-02-09 Thread Chelsea Fan
; field? > > Regards, > > Andréas > > > Den tors 9 feb. 2023 kl 12:09 skrev Chelsea Fan < > allaberdi16yazha...@gmail.com>: > >> hello guys, Is it possible to use model method value to ordering model >> objects in meta class? >> >> class Post(mod

drf serializers

2023-02-24 Thread Chelsea Fan
how to count manytomany field items in serializers.py? -- 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 di

Re: Can't render images from database

2023-03-03 Thread Chelsea Fan
did you setup static and media files? On Sat, Mar 4, 2023 at 3:00 AM Michael Starr wrote: > My next issue is that I'm having difficulty displaying images stored in > the database. > > It's a mouthful so I'll spare you, but I'll add details as I go along. > > Michael > > -- > You received this me

Re: Django Guide

2023-03-06 Thread Chelsea Fan
Hello Abdullah, watch videos Denis Ivy in youtube On Sun, Mar 5, 2023 at 8:58 PM Abdullah Niaz wrote: > Hello, My Name is Abdullah. I am pursuing my computer science degree & I > am in the second semester. I learned Python At my school. Now, I want to > learn Django. Can Anyone guide me > > -- >

Re: Image uploaded to database but not displaying

2023-04-12 Thread Chelsea Fan
can see your settings.py and urls.py inside project folder? On Wed, Apr 12, 2023 at 11:57 AM David Nugent wrote: > It is very important to understand the difference between “static” and > “media”. The two are somewhat similar, and the code to handle (serve) each > is even almost identical. Conce

django smtp.gmail error

2023-05-17 Thread Chelsea Fan
how can I solve this? I enabled 2fa then created app password but it does not work. smtplib.SMTPAuthenticationError: (535, b'5.7.8 Username and Password not accepted. Learn more at\n5.7.8 https://support.google.com/mail/?p=BadCredentials ev21-20020a17090729d500b00965b416585bsm12337451ejc.118 - gsmt

Re: django smtp.gmail error

2023-05-17 Thread Chelsea Fan
ill not work. > OR > Please recreate a new app and copy the password again and enter. > > Thanks and Regards > Lakshyaraj Dash > > On Wed, May 17, 2023, 19:17 Chelsea Fan > wrote: > >> how can I solve this? I enabled 2fa then created app password but it does >>

Re: django smtp.gmail error

2023-05-17 Thread Chelsea Fan
yeah On Wed, May 17, 2023 at 7:07 PM Vishesh Mangla wrote: > Are you logging through Gmail? > > On Wed, 17 May, 2023, 19:35 Chelsea Fan, > wrote: > >> I deleted all passwords and thhen created new password but nothig was >> happen >> >> On Wed,

Re: django smtp.gmail error

2023-05-17 Thread Chelsea Fan
y > stories on medium. I had written one for a solution. > > On Wed, 17 May, 2023, 19:36 Vishesh Mangla, > wrote: > >> Are you logging through Gmail? >> >> On Wed, 17 May, 2023, 19:35 Chelsea Fan, >> wrote: >> >>> I deleted all passwords and thhe

Re: django smtp.gmail error

2023-05-17 Thread Chelsea Fan
thank you )) On Thu, May 18, 2023 at 9:52 AM Vishesh Mangla wrote: > > https://medium.com/@manglavishesh64/using-gmail-smtp-with-3rd-party-apps-be3e15f4a7fc > > On Wed, 17 May, 2023, 19:50 Chelsea Fan, > wrote: > >> how can I find your medium stories? >> >

django windows authentication

2023-05-19 Thread Chelsea Fan
Hello guys, what is windows authentication and how is it work in django and how can I realize 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+u

Re: django windows authentication

2023-05-19 Thread Chelsea Fan
> > On Fri, May 19, 2023 at 11:44 AM Chelsea Fan < > allaberdi16yazha...@gmail.com> wrote: > >> Hello guys, what is windows authentication and how is it work in django >> and how can I realize it? >> >> -- >> You received this message because you are

Re: guys help me please, I cannot upload images from django form,

2020-08-29 Thread Chelsea Fan
ok bro I'll try it, thanks for now On Sat, Aug 29, 2020 at 7:53 PM Jonathan Villavicencio < codejonvi...@gmail.com> wrote: > Hello! > in the class Posts in the field "image" add upload_to=upload_path for > example: > image = models.ImageField(blank=True, null=True, verbose_name='surat', > upload_

django staticfiles problem

2020-10-14 Thread Chelsea Fan
hello everyone, I have an issue, I can't connect css style to my template, but I can upload images and see it , here is my code, please help me, thanks for attentions !!! STATIC_URL = '/static/' STATICFILES_DIR = [BASE_DIR / 'static'] {% load static %} [image: image.png] -- You

Re: django staticfiles problem

2020-10-14 Thread Chelsea Fan
MEDIA_URL = '/images/' MEDIA_ROOT = BASE_DIR / 'static/images' On Wed, Oct 14, 2020 at 2:12 PM Anh Nguyen wrote: > where is your STATIC_ROOT ? > > > On Wed, Oct 14, 2020 at 5:43 PM Chelsea Fan > wrote: > >> hello everyone, I have an issue, I can&

Re: django staticfiles problem

2020-10-15 Thread Chelsea Fan
own dir as /media/ and have /static/ >> .You are also missing a static root there . >> >> On Wed, Oct 14, 2020, 5:05 PM Chelsea Fan >> wrote: >> >>> MEDIA_URL = '/images/' >>> MEDIA_ROOT = BASE_DIR / 'static/images'

hello guys, help me please, I could not associate username to a post

2020-12-15 Thread Chelsea Fan
[image: image.png] -- 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://g

Re: hello guys, help me please, I could not associate username to a post

2020-12-15 Thread Chelsea Fan
Thanks bro,🙏 On Wed, 16 Dec 2020, 7:27 am Ronald Kamulegeya, < ronald.kamulegeya.2...@gmail.com> wrote: > Hi, use > Obj.save() > Instead of > Form.save() > > On Tue, Dec 15, 2020, 21:25 Chelsea Fan > wrote: > >> [image: image.png] >> >>

Re: Ongoing project

2020-12-17 Thread Chelsea Fan
I am interested in this project too On Thu, 17 Dec 2020, 2:42 pm Peter Kirieny, wrote: > Hello team > I have a project in django > (developing an ecommerce website with some innovations) > > Using pycharm and python, am looking for a partner here > > Am a Kenyan, in Nairobi > > If interested ple

hello guys, how can I upload multiple images using single button? help me please

2021-01-07 Thread Chelsea Fan
-- 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

Re: hello guys, how can I upload multiple images using single button? help me please

2021-01-08 Thread Chelsea Fan
yes I am using FileField and trying upload and to save it On Thu, Jan 7, 2021 at 4:09 PM Steven Mapes wrote: > Within Django Admin or somewhere else? > Are you using FileFields and trying to save to the models or are you just > trying to POST multiple files? > > On Thursday, 7 January 2021 at 1

Re: hello guys, how can I upload multiple images using single button? help me please

2021-01-08 Thread Chelsea Fan
server rendering On Fri, Jan 8, 2021 at 5:23 PM Satyajit Barik wrote: > do you use API or server side rendering method? > > On Fri, Jan 8, 2021 at 1:34 PM Chelsea Fan > wrote: > >> yes I am using FileField and trying upload and to save it >> >> >> On T

Re: hello guys, how can I upload multiple images using single button? help me please

2021-01-09 Thread Chelsea Fan
; >. > > On Thu, 7 Jan 2021 at 15:24, Chelsea Fan > wrote: > > > > > > -- > > 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

Re: Help needed

2021-02-23 Thread Chelsea Fan
Replace auto_now to auto_add_now On Tue, 23 Feb 2021, 9:04 am neha bhurke, wrote: > Hello everyone, > > I am trying to select the custom date but > datetime=models.DateTimeField(auto_now=True) > is only taking current date > Please help me > > -- > You received this message because you are

Re: Create a custom User model and Authenticate with it

2021-03-03 Thread Chelsea Fan
try this code, do not forget import authenticate (from django.contrib.auth import authenticate, login) modify this code On Wed, Mar 3, 2021 at 8:01 PM Kasper Laudrup wrote: > On 03/03/2021 16.27, Devansh Soni wrote: > > Hi, > > > > I'm currently working on a Django project in which I have to cre

Re: Issue in the models.py

2021-05-16 Thread Chelsea Fan
try this On Sun, May 16, 2021 at 11:40 AM Suraj Kumar < surajsrivastava021...@gmail.com> wrote: > Hi everyone, > > I having some issue in models.py > While doing in the python shell in the pycharm terminal. > So I write the code in the models.py > Screenshot: Screenshot (312)-1.png > > Then I run

Re: CSS not linking with HTML

2021-05-29 Thread Chelsea Fan
Style was wrong, you wrote syle, correct it On Fri, 28 May 2021, 9:38 pm sukhy gill, wrote: > Dear Frnds > I am unable to link CSS with HTML > HTML working but CSS not working inside the .html file with the help of > LINK in tag > > I am using thefollowings:- > Setting.py - ST

Re: CSS not linking with HTML

2021-05-29 Thread Chelsea Fan
Is it working now? On Sat, 29 May 2021, 3:40 pm lalit suthar, wrote: > read this https://docs.djangoproject.com/en/2.2/intro/tutorial06/ and > check how you are giving paths. Also after loading the page on your browser > go to "View Page Source" and click on the CSS file link and check if the >

Re: CSS not linking with HTML

2021-05-29 Thread Chelsea Fan
Could you send me your settings.py and urls.py in project folder On Sat, 29 May 2021, 4:04 pm sukhy gill, wrote: > No dear > > On Sat, May 29, 2021, 18:29 Chelsea Fan wrote: > >> Is it working now? >> >> On Sat, 29 May 2021, 3:40 pm lalit suthar, &g

Re: CSS not linking with HTML

2021-05-29 Thread Chelsea Fan
try to change settings STATIC_DIR = [ os.path.join(BASE_DIR,'static') ] On Fri, May 28, 2021 at 9:38 PM sukhy gill wrote: > Dear Frnds > I am unable to link CSS with HTML > HTML working but CSS not working inside the .html file with the help of > LINK in tag > > I am using the

Re: CSS not linking with HTML

2021-05-31 Thread Chelsea Fan
.css➡️ >>>>> >>>>> On Sat, May 29, 2021, 19:16 Fabiano Leite >>>> wrote: >>>>> >>>>>> >>>>>> Where is located your 'css/style.css'; >>>>>> Em sábado, 29 de maio de 20

Re: CSS not linking with HTML

2021-05-31 Thread Chelsea Fan
You are welcome)) On Mon, 31 May 2021, 6:44 pm sukhy gill, wrote: > Thanku so much all of you for your valuable guidance to me 🙏🙏🙏🙂🙂 > > On Mon, May 31, 2021, 21:07 Chelsea Fan wrote: > >> Good luck >> >> On Mon, 31 May 2021, 6:31 pm sukhy gill,

Re: Джанго проект

2021-06-02 Thread Chelsea Fan
Антонио Меле " джанго 2 в примерах" On Wed, 2 Jun 2021, 5:43 pm КОРШУНОВ ГЕОРГИЙ, wrote: > Всем привет, я начинающий разработчик. Где я могу почитать полный, > подробный гид по использованию фреймворка джанго? Минимум воды, максимум > эффективной информации, подскажите пожалуйста. > > -- > You r