django form validation error massage not showing. please help me out

2023-09-15 Thread Mohammad Shahidullah
models.py class Position(models.Model): title = models.CharField(max_length=50) def __str__(self): return self.title class Department(models.Model): title = models.CharField(max_length=50) def __str__(self): return self.title class Employee(models.Model): fu

Re: how to solve please help me

2023-08-10 Thread Kani Sbt
i solved that , i deleted all the databases and makemigrations and migrate and all was done good On Thu, 10 Aug 2023 at 18:12, Mz Gz wrote: > Maybe you referenced another model in your model and the referenced model > is no more there or its name changed > > On Thu, 10 Aug 2023, 2:10 pm Kani Sbt

Re: how to solve please help me

2023-08-10 Thread Mz Gz
Maybe you referenced another model in your model and the referenced model is no more there or its name changed On Thu, 10 Aug 2023, 2:10 pm Kani Sbt, wrote: > django.db.migrations.exceptions.InconsistentMigrationHistory: Migration > admin.0001_initial is applied before its dependency lottyapp.00

how to solve please help me

2023-08-10 Thread Kani Sbt
django.db.migrations.exceptions.InconsistentMigrationHistory: Migration admin.0001_initial is applied before its dependency lottyapp.0001_initial on database 'default'. -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this g

RE: Please help me solving this error

2023-05-24 Thread prdpchowdhary
My code is import re iine = “My name is Bahtta. I want to learn”print(re.findall('[aeiou]+', line))And is it is running okSent from Mail for Windows From: Ramesh BhattaSent: Wednesday, May 24, 2023 6:41 AMTo: django-users@googlegroups.comSubject: Please help me solving this error Trace

Please help me solving this error

2023-05-23 Thread Ramesh Bhatta
Traceback (most recent call last): File "C:\users\rudra\desktop\python\client2.py", line 1, in import urllib.request File "C:\Users\Rudra\AppData\Local\Programs\Python\Python311\Lib\urllib\request.py", line 84, in import base64 File "C:\Users\Rudra\AppData\Local\Programs\Python\Pyth

Re: I am struggling with calling consumer.py function from views to consumer in django here ismy code. Please help me. I am calling Asyncwebsocketconsumer

2023-04-02 Thread MOHAMED SABEEH VADAKKATH VALAPPIL
can you provide more details about the specific issues you are facing when trying to call this method? Are you getting any error messages, or is the function simply not being called? Any additional information you can provide will help me better understand your problem. I am providing you with

I am struggling with calling consumer.py function from views to consumer in django here ismy code. Please help me. I am calling Asyncwebsocketconsumer

2023-04-02 Thread 'Sneha Vishwakarma' via Django users
from channels.generic.websocket import AsyncWebsocketConsumer import json class MyConsumer(AsyncWebsocketConsumer): async def connect(self): self.room_group_name = 'kafka' # Join room group await self.channel_layer.group_add( self.room_group_name,

Re: PLEASE HELP ME KNOW HOW TO ARRANGE INSTALLED APPS.

2022-10-29 Thread Ammar Mohammed
Hello Dear You should name your apps without the app word in the end Example : INSTALLED_APPS = [ "apps.store'', " apps.core", ] This will definitely work Regards On Wed, 19 Oct 2022, 7:30 AM regan opere, wrote: > Many, thanks for the reply. However, I have two apps in the directory > c

Re: PLEASE HELP ME KNOW HOW TO ARRANGE INSTALLED APPS.

2022-10-19 Thread johnpaul mulongo
You need to give the django apps you created unique names (try to see them as separate entities), in your case this would be 'core' and 'store', then you need to add them to the INSTALED_APPS list like so in the settings file: [..., 'core.apps.CoreConfig', 'store.apps.StoreConfig', ] On Wed, Oct

Re: PLEASE HELP ME KNOW HOW TO ARRANGE INSTALLED APPS.

2022-10-18 Thread regan opere
Many, thanks for the reply. However, I have two apps in the directory called Apps.. so when I name the apps in the settings using tiles.apps.TilesConfig' it still does'nt work naming them like this: 'apps.core.apps', 'apps.store.apps', also still giver the error: django.core.exceptio

Re: PLEASE HELP ME KNOW HOW TO ARRANGE INSTALLED APPS.

2022-10-18 Thread Chukwudi Onwusa
Lets take App Directory name tiles. So inthe installed app list it will be 'tiles.apps.TilesConfig', Or put simply 'tiles', Hope it helps . On Tue, Oct 18, 2022, 06:16 regan opere wrote: > Hello, I am new to django and I am still learning. > I have created two apps core and store and I have re

PLEASE HELP ME KNOW HOW TO ARRANGE INSTALLED APPS.

2022-10-17 Thread regan opere
Hello, I am new to django and I am still learning. I have created two apps core and store and I have registered them in the settings file of my root directory. This is the error I get: django.core.exceptions.ImproperlyConfigured: Application labels aren't unique, duplicates: apps my settings lo

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, 2022 at 6:55 PM Chelsea Fan >

Re: please help me to solve

2022-07-26 Thread Abdul Qoyyuum
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, 2022 at 6:55 PM Chelsea Fan wrote: > Hello, such a question, we plan to implement an application for And

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: How to resolve this error? can anyone please help me?

2022-01-13 Thread Luciano Martins
Hello, basically where you are calling this route you have to pass something like this: *{% url 'placeOrder' 1 %}* and it is being called without nd like this: *{% url 'placeOrder' %}*, but as posted above it would be better to put the code for the person to analyze Em quinta-feira, 13 de janei

Re: How to resolve this error? can anyone please help me?

2022-01-13 Thread Lakshyaraj Dash X-D 25
Please share me your code privately so that I can solve your proy as soon as possible. On Thu, Jan 13, 2022, 20:16 sharath p wrote: > > Environment: > > > Request Method: GET > Request URL: http://127.0.0.1:8000/ > > Django Version: 4.0.1 > Python Version: 3.10.1 > Installed Applications: > ['dj

How to resolve this error? can anyone please help me?

2022-01-13 Thread sharath p
Environment: Request Method: GET Request URL: http://127.0.0.1:8000/ Django Version: 4.0.1 Python Version: 3.10.1 Installed Applications: ['django.contrib.admin', 'django.contrib.auth', 'django.contrib.contenttypes', 'django.contrib.sessions', 'django.contrib.messages', 'django.contrib.sta

Re: please help me todebug this code

2021-09-01 Thread Munzir Abba Daneji
Alright Peter sorry i get it. Fine On Tue, Aug 31, 2021, 2:16 PM 'Peter van der Does' via Django users < django-users@googlegroups.com> wrote: > You seem to be confused about who asked the question because it was not me > who asked the question. > On 8/31/21 6:58 AM, Munzir Abba Daneji wrote: > >

Re: please help me todebug this code

2021-08-31 Thread 'Peter van der Does' via Django users
You seem to be confused about who asked the question because it was not me who asked the question. On 8/31/21 6:58 AM, Munzir Abba Daneji wrote: > Hi peter The tag library you use is not correct use  > > {% load static %} > > again you html directory seems to be not organise try project_folder >

Re: please help me todebug this code

2021-08-31 Thread Munzir Abba Daneji
Hi peter The tag library you use is not correct use {% load static %} again you html directory seems to be not organise try project_folder > Template_folder> index.html for example On Tue, Aug 31, 2021, 1:46 AM 'Peter van der Does' via Django users < django-users@googlegroups.com> wrote: > Uh w

Re: please help me todebug this code

2021-08-30 Thread 'Peter van der Does' via Django users
Uh what question are you answering? On 8/30/21 12:55 PM, Munzir Abba Daneji wrote: > Peter Check your Template DIR you supposed to organize you folders > flow under your "first_project" folder create the template folder and > inser you html  > > On Mon, Aug 30, 2021, 5:09 PM 'Peter van der Does' v

Re: please help me todebug this code

2021-08-30 Thread Munzir Abba Daneji
Peter Check your Template DIR you supposed to organize you folders flow under your "first_project" folder create the template folder and inser you html On Mon, Aug 30, 2021, 5:09 PM 'Peter van der Does' via Django users < django-users@googlegroups.com> wrote: > You got a " on line 2 that shouldn'

Re: please help me todebug this code

2021-08-30 Thread 'Peter van der Does' via Django users
You got a " on line 2 that shouldn't be there On 8/28/21 1:15 PM, DUSHYANT SINGH wrote: > In template C:\Users\DUSHYANT > THAKUR\PycharmProjects\django\gs15\course\templates\course\index.html, > error at line 2 >    '"' is not a registered tag library. Must be one of: > >    1 : >

Re: please help me todebug this code

2021-08-30 Thread MR INDIA
send the template On Sunday, 29 August 2021 at 08:12:37 UTC+5:30 du19sh...@gmail.com wrote: > > Environment: > > > Request Method: GET > Request URL: http://127.0.0.1:8000/cor/learndj/ > > Django Version: 3.0 > Python Version: 3.8.6 > Installed Applications: > ['django.contrib.admin', > 'django.

please help me todebug this code

2021-08-28 Thread DUSHYANT SINGH
Environment: Request Method: GET Request URL: http://127.0.0.1:8000/cor/learndj/ Django Version: 3.0 Python Version: 3.8.6 Installed Applications: ['django.contrib.admin', 'django.contrib.auth', 'django.contrib.contenttypes', 'django.contrib.sessions', 'django.contrib.messages', 'django.co

Re: Please help me to add button functionality in django admin panel for filter list of objects

2021-08-08 Thread MR INDIA
This article can help : https://hakibenita.medium.com/how-to-add-custom-action-buttons-to-django-admin-8d266f5b0d41 On Thursday, 5 August 2021 at 18:31:52 UTC+5:30 arvind@gmail.com wrote: > hey guys i want to add the action on click the list will be filter of > objects > > here the on cl

Re: please help me to solve this error

2021-05-02 Thread ramadhan ngallen
Did you include documentation.urls in your project urls instead of foodcode.urls? On 2 May 2021, 13:40 +0300, FIRDOUS BHAT , wrote: > replacing the documentation app with foodcode should resolve the issue > > On Sun, May 2, 2021 at 3:13 PM ramadhan ngallen wrote: > > Remove the app called documen

Re: please help me to solve this error

2021-05-02 Thread FIRDOUS BHAT
replacing the documentation app with foodcode should resolve the issue On Sun, May 2, 2021 at 3:13 PM ramadhan ngallen wrote: > Remove the app called documentation and replace it with foodcode. From > directory you don't have an app called documentation > On 2 May 2021, 12:41 +0300, Bheemanagowd

Re: please help me to solve this error

2021-05-02 Thread Franck Tchouanga
CAN YOU SHOW CASE THE SECTION WHERE YOU IMPORTED YOUR LIBRARIES On Sun, May 2, 2021 at 10:57 AM ramadhan ngallen wrote: > Save your project it's not using autosave. Add trailing comma at the end > DIR list of template directories then run migrations and observe the error > on Terminal > On 2 May

Re: please help me to solve this error

2021-05-02 Thread ramadhan ngallen
Save your project it's not using autosave. Add trailing comma at the end DIR list of template directories then run migrations and observe the error on Terminal On 2 May 2021, 12:52 +0300, Bheemanagowda S Gowdra , wrote: > > > On Sun, May 2, 2021 at 3:19 PM ramadhan ngallen wrote: > > Expand yo

Re: please help me to solve this error

2021-05-02 Thread ramadhan ngallen
Expand your template directory so that we can see if documentation.html is existing On 2 May 2021, 12:47 +0300, Bheemanagowda S Gowdra , wrote: > yes i got my mistake(instead of writing app name wrote html file name) > > but after this also getting same error > > On Sun, May 2, 2021 at 3:10 PM Bh

Re: please help me to solve this error

2021-05-02 Thread ramadhan ngallen
Don't forget to add comma , at the end of each installed apps list. On 2 May 2021, 12:41 +0300, Bheemanagowda S Gowdra , wrote: > this screenshot of settings.py INSTALLED_APPS list > > > On Sun, May 2, 2021 at 3:00 PM ramadhan ngallen wrote: > > Show settings.py INSTALLED_APPS list. It seems you

Re: please help me to solve this error

2021-05-02 Thread ramadhan ngallen
Remove the app called documentation and replace it with foodcode. From directory you don't have an app called documentation On 2 May 2021, 12:41 +0300, Bheemanagowda S Gowdra , wrote: > this screenshot of settings.py INSTALLED_APPS list > > > On Sun, May 2, 2021 at 3:00 PM ramadhan ngallen wrot

Re: please help me to solve this error

2021-05-02 Thread FIRDOUS BHAT
Seems like you've added documentation as a app name to your settings.py but there isn't any app created with the name documentation On Sun, May 2, 2021 at 3:00 PM ramadhan ngallen wrote: > Show settings.py INSTALLED_APPS list. It seems you added an app named > "documentation" . > On 2 May 2021,

Re: please help me to solve this error

2021-05-02 Thread ramadhan ngallen
Show settings.py INSTALLED_APPS list. It seems you added an app named "documentation" . On 2 May 2021, 12:25 +0300, Bheemanagowda S Gowdra , wrote: > sorry i am new to django and learning from youtube, > > i don't know what is happening while running "python manage.py runserver" > > On Sun, May 2

RE: please help me to solve this error

2021-05-02 Thread yeddu.j.prasad
@googlegroups.com Subject: Re: please help me to solve this error sorry i am new to django and learning from youtube, i don't know what is happening while running "python manage.py runserver" On Sun, May 2, 2021 at 2:49 PM Kasper Laudrup mailto:laud...@stacktrace.dk> > wrote: Hav

Re: please help me to solve this error

2021-05-02 Thread Bheemanagowda S Gowdra
sorry i am new to django and learning from youtube, i don't know what is happening while running "python manage.py runserver" On Sun, May 2, 2021 at 2:49 PM Kasper Laudrup wrote: > Have a look here: > > > https://betterprogramming.pub/how-to-ask-questions-about-programming-dcd948fcd2bd > > Kind

Re: please help me to solve this error

2021-05-02 Thread Kasper Laudrup
Have a look here: https://betterprogramming.pub/how-to-ask-questions-about-programming-dcd948fcd2bd 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,

Please help me ? forms are not stored in database

2021-04-01 Thread Mahendra
#Model Form Django import models Class singupdata(models.model): Username=models.CharField(max_len=20) Password=models.CharField(max_len=20) #form from django import forms Class Signform (forms.form): Username=forms.IntegerFiled( labe='E mail',

Re: RUNSERVER SERIOUS PROBLEM! Please help me pls

2020-08-04 Thread Phan Nguyen
[image: aaa.png] Here are the 4 screenshots I have for the structure. At first, it worked perfectly fine when the 'src' folder was in Dev/trydjango/'src'. After I moved 'src' to the another folder on Desktop and put it inside the webserver folder. The files path is on top of my screen FYI. At th

Re: RUNSERVER SERIOUS PROBLEM! Please help me pls

2020-08-04 Thread Phan Nguyen
*To add up, There are also 2 manage.py and 2 setting.py, some of the files may be repetitive because I accidentally copied code from one to another so it was duplicated.* On Tuesday, August 4, 2020 at 9:22:36 PM UTC+7, Phan Nguyen wrote: > > > -- You received this message because you are subsc

Re: RUNSERVER SERIOUS PROBLEM! Please help me pls

2020-08-04 Thread Jatin Agrawal
It seems like your directoy structure is not proper after you moved some files/folders. So, if you can send the screenshot of your directory structure, it might be helpful for others to help you. On Tuesday, August 4, 2020 at 10:12:32 AM UTC+5:30, Phan Nguyen wrote: > > *So I was be able to work

Re: RUNSERVER SERIOUS PROBLEM! Please help me pls

2020-08-03 Thread Isaac
Send the screenshot of your wsgi.py file On Tuesday, 4 August 2020 05:47:29 UTC+1, Phan Nguyen wrote: > > > > On Tuesday, August 4, 2020 at 11:42:32 AM UTC+7, Phan Nguyen wrote: >> >> *So I was be able to work with Django very well the past weeks. But >> certainly, I manually moved a 'src' folde

Re: RUNSERVER SERIOUS PROBLEM! Please help me pls

2020-08-03 Thread Phan Nguyen
On Tuesday, August 4, 2020 at 11:42:32 AM UTC+7, Phan Nguyen wrote: > > *So I was be able to work with Django very well the past weeks. But > certainly, I manually moved a 'src' folder(contain manage.py) which is > originally in a Dev folder, to another folder where I write all the code of > h

Re: Please help me out!

2020-06-19 Thread Kunal Solanke
Django channels On Fri, Jun 19, 2020, 12:01 meera gangani wrote: > Hello , > > I want to implement a Notification module in my Project > could you please help me out! > > > Thank you > -Meera Gangani > > -- > You received this message because you ar

RE: Please help me out!

2020-06-19 Thread Vishesh Mangla
See Django messages Sent from Mail for Windows 10 From: meera ganganiSent: 19 June 2020 12:01To: django-users@googlegroups.comSubject: Please help me out! Hello ,              I want to implement a Notification module in my Project could you please help me out!  Thank you-Meera Gangani-- You

Re: Please help me out!

2020-06-19 Thread Puneet Makhija
gt; >> On Fri, Jun 19, 2020 at 1:38 PM Doddahulugappa.B < >> doddahuluga...@gmail.com> wrote: >> >>> Please elaborate more on your requirement >>> >>> On Fri, Jun 19, 2020, 10:31 AM meera gangani >>> wrote: >>> >>>> Hello ,

Re: Please help me out!

2020-06-19 Thread meera gangani
wrote: >> >>> Hello , >>> >>> I want to implement a Notification module in my Project >>> could you please help me out! >>> >>> >>> Thank you >>> -Meera Gangani >>> >>> -- >>> You re

Re: Please help me out!

2020-06-19 Thread RANGA BHARATH JINKA
: > >> Hello , >> >> I want to implement a Notification module in my Project >> could you please help me out! >> >> >> Thank you >> -Meera Gangani >> >> -- >> You received this message because you are subscribed to the Google Gro

Re: Please help me out!

2020-06-19 Thread Doddahulugappa.B
Please elaborate more on your requirement On Fri, Jun 19, 2020, 10:31 AM meera gangani wrote: > Hello , > > I want to implement a Notification module in my Project > could you please help me out! > > > Thank you > -Meera Gangani > > -- > You rece

Re: Please help me out!

2020-06-19 Thread Puneet Makhija
tification module in my Project >> could you please help me out! >> >> >> Thank you >> -Meera Gangani >> >> -- >> You received this message because you are subscribed to the Google Groups >> "Django users" group. >> To unsubscrib

Re: Please help me out!

2020-06-19 Thread Puneet Makhija
yes, let me know U started your project? On Fri, Jun 19, 2020, 12:01 PM meera gangani wrote: > Hello , > > I want to implement a Notification module in my Project > could you please help me out! > > > Thank you > -Meera Gangani > > -- > You rece

Please help me out!

2020-06-18 Thread meera gangani
Hello , I want to implement a Notification module in my Project could you please help me out! Thank you -Meera Gangani -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emai

Re: Please help me out!!!!!

2020-06-03 Thread Lily Perera Capetillo
>> wrote: >> >>> Hello Django-users >>> >>> href is not working >>> here is my views.py file and my urls.py file >>> >>> Please Help me out!! >>> >>> Thank you in advance >>> -Meera >>> >>

Re: Please help me out!!!!!

2020-06-03 Thread Hella Nick
请检查您的路由地址,问题就出现在那里。 meera gangani 于2020年6月3日 周三15:19写道: > Hello Django-users > > href is not working > here is my views.py file and my urls.py file > > Please Help me out!! > > Thank you in advance > -Meera > > -- > You received this message because you

Re: Please help me out!!!!!

2020-06-03 Thread Integr@te System
Hi freind, You ever check typo in your code in base.html on for loop at "noti"!? gl! On Wed, Jun 3, 2020, 2:20 PM meera gangani wrote: > Hello Django-users > > href is not working > here is my views.py file and my urls.py file > > Please Help me out!! >

Re: Please help me out!!!!!

2020-06-03 Thread 'Ajay Rathore' via Django users
llo Django-users > > href is not working > here is my views.py file and my urls.py file > > Please Help me out!! > > Thank you in advance > -Meera > > -- > You received this message because you are subscribed to the Google Groups > "Django users" group. &g

Re: Please help me out!!!!!

2020-06-03 Thread maninder singh Kumar
y runserver command. This might give more >> information on the problem. >> >> Regards >> >> Ajay >> >> >> On Wed, Jun 3, 2020 at 10:21 AM meera gangani >> wrote: >> >>> Hello Django-users >>> >>> href is not

Re: Please help me out!!!!!

2020-06-03 Thread meera gangani
ng ./manage.py runserver command. This might give more > information on the problem. > > Regards > > Ajay > > > On Wed, Jun 3, 2020 at 10:21 AM meera gangani > wrote: > >> Hello Django-users >> >> href is not working >> here is my views.py

RE: Please help me out!!!!!

2020-06-03 Thread Vishesh Mangla
2020 12:49To: django-users@googlegroups.comSubject: Please help me out! Hello Django-users href is not workinghere is my views.py file and my urls.py file Please Help me out!! Thank you in advance-Meera-- You received this message because you are subscribed to the Google Groups "Django us

Re: Please help me out!!

2020-06-01 Thread Kasper Laudrup
Hi Meer,a On 01/06/2020 19.50, meera gangani wrote: I want to mark the attendance of all the employee So , my I’m working on hr management system . And we have to mark the attendance of all the employee So, we thought something new we can implement So we find a way 1. to using MAC address other

Please help me out!!

2020-06-01 Thread meera gangani
I want to mark the attendance of all the employee So , my I’m working on hr management system . And we have to mark the attendance of all the employee So, we thought something new we can implement So we find a way 1. to using MAC address otherwise IP address 2. Employee comes in building he can lo

Re: Can you please help me

2020-06-01 Thread Ayush Gupta
On Mon, Jun 1, 2020, 7:02 PM Ogunsanya Opeyemi wrote: > How do i upload images using pillow in django and my database engine is > mysql. I am trying to view my uploaded image but i can't find it. > > -- > You received this message because you are subscribed to the Google Groups > "Django users" g

Re: Can you please help me

2020-06-01 Thread Kasper Laudrup
Hi Ogunsanya, On 01/06/2020 15.30, Ogunsanya Opeyemi wrote: How do i upload images using pillow in django and my database engine is mysql. I am trying to view my uploaded image but i can't find it. This might be relevant: https://www.geeksforgeeks.org/python-uploading-images-in-django/ But

Can you please help me

2020-06-01 Thread Ogunsanya Opeyemi
How do i upload images using pillow in django and my database engine is mysql. I am trying to view my uploaded image but i can't find 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 f

Re: Can You please help me out!!!

2020-05-31 Thread Julio Cojom
t;> notification.message >>> notification.date >>> {% endfor %} >>> >>> Saygılarımla, >>> Sencer HAMARAT >>> >>> >>> >>> On Fri, May 29, 2020 at 1:59 PM meera gangani >>> wrote: >>> >>

Re: Please help me out?

2020-05-31 Thread Larry Martell
On Sat, May 30, 2020 at 11:30 PM meera gangani wrote: > > I want to generate trello-board in my django application > Can anyone tell me the How to do this? > Trello-board is like( to-do and future enhancements and doing ) where there > are 3-4 columns Take a look at https://github.com/riktar/jk

Re: Please help me out?

2020-05-31 Thread meera gangani
Like I have to implement trello board function in django In order that I have to implement archieve functionality and separately provided boxes for that 1.todo 2.doing 3 future enhancements etc. On Sunday, May 31, 2020, Sharva kant wrote: > Hi Meera, > > I believe you would have to use Javascrip

Re: Please help me out?

2020-05-30 Thread Sharva kant
Hi Meera, I believe you would have to use Javascript framework on front end to do that. You can use Vuejs, Angular js , React or Ember to do that Cheers Sharva On Sat, 30 May 2020 at 22:31, meera gangani wrote: > I want to generate trello-board in my django application > Can anyone tell me th

Please help me out?

2020-05-30 Thread meera gangani
I want to generate trello-board in my django application Can anyone tell me the How to do this? Trello-board is like( to-do and future enhancements and doing ) where there are 3-4 columns In-advance thank you -Meera Gangani -- You received this message because you are subscribed to the Google

Re: Can You please help me out!!!

2020-05-29 Thread meera gangani
otifications} >> >> The you have to iterate notifications in template via for loop. For >> example; >> >> {% for notification in notifications %} >> notification.title >> notification.message >> notification.date >> {% endfor %} >> >> Saygılarımla,

Re: Can You please help me out!!!

2020-05-29 Thread meera gangani
Sencer HAMARAT > > > > On Fri, May 29, 2020 at 1:59 PM meera gangani > wrote: > >> i want to fetch last 3 records for notification!! >> But I only fetch last 1 record. >> >> Can you please help me out!!! >> Can i use filters?? >> >> An

Re: Can You please help me out!!!

2020-05-29 Thread Sencer Hamarat
tion.message notification.date {% endfor %} Saygılarımla, Sencer HAMARAT On Fri, May 29, 2020 at 1:59 PM meera gangani wrote: > i want to fetch last 3 records for notification!! > But I only fetch last 1 record. > > Can you please help me out!!! > Can i use filters?? > > A

RE: RES: Please help me pip install mysqlclient time screenshot image this error

2020-05-26 Thread Vishesh Mangla
Sorry for duplicate answer. I posted late. Sent from Mail for Windows 10 From: Samuel NogueiraSent: 26 May 2020 22:49To: django-users@googlegroups.comSubject: RES: Please help me pip install mysqlclient time screenshot image this error In the error shows that you don’t have visual C++ 14.0

RE: Please help me pip install mysqlclient time screenshot image this error

2020-05-26 Thread Vishesh Mangla
See the last photo, it says Microsoft Visual C++ 14 required. You are surely using win 7. Please try install Visual studio community version  https://visualstudio.microsoft.com/vs/. Sent from Mail for Windows 10 From: R D SainiSent: 26 May 2020 22:40To: Django usersSubject: Please help me pip

RES: Please help me pip install mysqlclient time screenshot image this error

2020-05-26 Thread Samuel Nogueira
:10Para: Django usersAssunto: Please help me pip install mysqlclient time screenshot image this 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-user

Re: Please help me out?

2020-05-21 Thread o1bigtenor
On Thu, May 21, 2020 at 2:10 PM Kasper Laudrup wrote: > > Hi Meera, > > On 21/05/2020 14.50, meera gangani wrote: > > Actually my Problem is that i want to mark the attendance of all the > > employee using ip address referenced to the mac address > > So First I turned ip into whitelisting ip(Trust

Re: Please help me out?

2020-05-21 Thread Kasper Laudrup
Hi Meera, On 21/05/2020 14.50, meera gangani wrote: Actually my Problem is that i want to mark the attendance of all the employee using ip address referenced to the mac address So First I turned ip into whitelisting ip(Trusted IP Addresses ) then what was the implementation I do? It is not v

Re: Please help me out?

2020-05-21 Thread meera gangani
>> I want to mark the attendance of employee using ip address or any other >> way >> can you please help me out of the situation? >> >> Thanking You, >> Meera. >> >> -- >> You received this message because you are subscribed to the Google Groups >

Re: Please help me out?

2020-05-21 Thread 'Arno Franken' via Django users
gt; >> You need to look at the “header” of the request object for those details. >> >> >> >> Sent from Mail <https://go.microsoft.com/fwlink/?LinkId=550986> for >> Windows 10 >> >> >> >> *From: *meera gangani >&g

Re: Please help me out?

2020-05-21 Thread Anuroop Pendela
to go for location based solution which is easy capturing from mobile or browser. On Thu 21 May, 2020, 10:39 AM meera gangani, wrote: > I want to mark the attendance of employee using ip address or any other way > can you please help me out of the situation? > > Thanking

Re: Please help me out?

2020-05-21 Thread meera gangani
> > > *From: *meera gangani > *Sent: *21 May 2020 10:39 > *To: *django-users@googlegroups.com > *Subject: *Please help me out? > > > > I want to mark the attendance of employee using ip address or any other way > > can you please help me out of the situation? >

RE: Please help me out?

2020-05-20 Thread Vishesh Mangla
You need to look at the “header” of the request object for those details. Sent from Mail for Windows 10 From: meera ganganiSent: 21 May 2020 10:39To: django-users@googlegroups.comSubject: Please help me out? I want to mark the attendance of employee using ip address or any other waycan you please

Please help me out?

2020-05-20 Thread meera gangani
I want to mark the attendance of employee using ip address or any other way can you please help me out of the situation? Thanking You, Meera. -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop

Re: hai everyone, i am getting error in sending email portion, after submitting i got nothing in my mail. if anyone please help me

2020-05-08 Thread Kasper Laudrup
Hi Yammuna, On 08/05/2020 13.59, yammuna pari wrote: Dear Kasper Laudrup , I am not using any error handling functions,  only sending email was not working I created a Contact form on my website built in Django but emails sent from the form do not seem to actually send. please check the cod

Re: hai everyone, i am getting error in sending email portion, after submitting i got nothing in my mail. if anyone please help me

2020-05-08 Thread Kasper Laudrup
Hi Yammuna, On 08/05/2020 08.40, yammuna pari wrote: Dear Kasper, Thanks for reply. I am not getting any error message even form also working well  but after submitting the fields are not going to email. You did write that you were getting an error, did you get an error without an error

Re: hai everyone, i am getting error in sending email portion, after submitting i got nothing in my mail. if anyone please help me

2020-05-08 Thread yammuna pari
Dear Varun, This error was in home page only but In other page i got the output so i think email settings and port number was correct On Fri, May 8, 2020 at 3:43 PM Varun krishna <90.varunkris...@gmail.com> wrote: > Hi Yammuna pari, > > The issue you are experiencing might be because of the emai

Re: hai everyone, i am getting error in sending email portion, after submitting i got nothing in my mail. if anyone please help me

2020-05-08 Thread Varun krishna
Hi Yammuna pari, The issue you are experiencing might be because of the email settings. Check if the port numbers are correct. Also specify more details about how you are trying to send email( like gmail). They to recheck the smtp settings and that should resolve the issue. Regards, Varun. On Fr

Re: hai everyone, i am getting error in sending email portion, after submitting i got nothing in my mail. if anyone please help me

2020-05-07 Thread yammuna pari
Dear Kasper, Thanks for reply. I am not getting any error message even form also working well but after submitting the fields are not going to email. On Fri, May 8, 2020 at 2:49 AM Kasper Laudrup wrote: > Hi Yammuna, > > It is very likely that the error is the reason why you're not getting >

Re: hai everyone, i am getting error in sending email portion, after submitting i got nothing in my mail. if anyone please help me

2020-05-07 Thread Kasper Laudrup
Hi Mortaz, On 07/05/2020 22.09, Motaz Hejaze wrote: You dont have any error messages ??? Try to send the mail to your console first to test functionality That was pretty much the point is was trying to make in my reply to Yammuna. Kind regards, Kasper Laudrup -- You received this message

Re: hai everyone, i am getting error in sending email portion, after submitting i got nothing in my mail. if anyone please help me

2020-05-07 Thread Motaz Hejaze
You dont have any error messages ??? Try to send the mail to your console first to test functionality On Thu, 7 May 2020, 8:49 pm Kasper Laudrup, wrote: > Hi Yammuna, > > It is very likely that the error is the reason why you're not getting > any mail. > > Hard to tell without knowing what kind

Re: hai everyone, i am getting error in sending email portion, after submitting i got nothing in my mail. if anyone please help me

2020-05-07 Thread Kasper Laudrup
Hi Yammuna, It is very likely that the error is the reason why you're not getting any mail. Hard to tell without knowing what kind of error you are getting though. I would suggest you try to fix the error and then see if your mail gets through. Kind regards, Kasper Laudrup -- You receive

hai everyone, i am getting error in sending email portion, after submitting i got nothing in my mail. if anyone please help me

2020-05-07 Thread yammuna pari
def homeview(request): # return HttpResponse("Welcome to the store") if request.method =='POST': form = Uploader(request.POST) if form.is_valid(): Firstname=request.POST.get('Firstname','') Lastname=request.POST.get('Lastname','') Phoneno=

Re: Please help me while i am connecting mysql database to django lroject iam getting following error

2020-03-22 Thread fahad rasool
Thanks brother it really works!!☺️😊 On Sun, 22 Mar 2020, 10:54 pm Motaz Hejaze, wrote: > There is a leading space in ' localhost'.. > Remove it > > On Sun, 22 Mar 2020, 6:59 pm fahad rasool, > wrote: > >> Please help me while i am connecting mysql database

Re: Please help me while i am connecting mysql database to django lroject iam getting following error

2020-03-22 Thread Motaz Hejaze
There is a leading space in ' localhost'.. Remove it On Sun, 22 Mar 2020, 6:59 pm fahad rasool, wrote: > Please help me while i am connecting mysql database to django lroject iam > getting following error > > -- > You received this message because you are subscr

Re: Hi everyone I am new in django and postgresql. Actually I am getting following error when i run the project, Although I am putting right password and username. Please Help me....

2020-01-03 Thread Muhammed Rafi A
password is not correct, check them or reset the password ones more On Fri, Jan 3, 2020 at 2:58 PM shailendra singh wrote: > The above exception was the direct cause of the following exception: > > Traceback (most recent call last): > File > "/Library/Frameworks/Python.framework/Versions/3.8/l

Re: Hi everyone I am new in django and postgresql. Actually I am getting following error when i run the project, Although I am putting right password and username. Please Help me....

2020-01-03 Thread Rajesh Maruti
The authentication error for the database username with password Please check the DB username and password On Fri, 3 Jan 2020 at 14:57, shailendra singh wrote: > The above exception was the direct cause of the following exception: > > Traceback (most recent call last): > File > "/Library/Fra

Re: Hi everyone I am new in django and postgresql. Actually I am getting following error when i run the project, Although I am putting right password and username. Please Help me....

2020-01-03 Thread sagar ninave
Hello ShailendraI have tried to attached postgresql to django but it could not happened please can you tell me what is procedure to do that -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails

  1   2   3   >