Re: Project available

2020-05-12 Thread tejasri mamidi
Iam interested to collaborate

On Mon, May 11, 2020, 11:36 maninder singh Kumar 
wrote:

> Dear group members,
>
> I have a django project available the flowcharts of which will be up in 1
> week.  Write or call if interested ?
>
> Willy
> +91 9910669700
> wi...@kawapeople.com
>
> Sent from my iPad
>
> --
> 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/msgid/django-users/58FEE8F5-5336-43BA-B65D-ECDA1C8303EA%40gmail.com
> .
>

-- 
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/msgid/django-users/CAP6hVmDxgnF9STkJxaeMo%2BdDHAKPuJ78mj12jmSA4LXQ-8v80Q%40mail.gmail.com.


Re: Tutorial Part 1

2020-05-09 Thread tejasri mamidi
Change mysite.urls ,
Path(' ',include('polls.url'))...

You were not created any polls function your view and and not import any
polls view in your mysite.urls

On Sun, May 10, 2020, 01:15 Randy Zeitvogel 
wrote:

> This is from my mysite/settings.py file:
>
> # Application definition
>
> INSTALLED_APPS = [
> 'polls.apps.PollsConfig',
> 'django.contrib.admin',
> 'django.contrib.auth',
> 'django.contrib.contenttypes',
> 'django.contrib.sessions',
> 'django.contrib.messages',
> 'django.contrib.staticfiles',
> ]
>
> This is from my polls/urls.py
>
> from django.urls import path
>
> from . import views
>
> urlpatterns = [
> path('', views.index, name='index'),
> path('', views.details, name='detail'),
> path('/results/', views.results, name='results'),
> path('/vote/', views.vote, name='vote'),
> ]
>
> This is from polls/apps.py
>
> from django.apps import AppConfig
>
>
> class PollsConfig(AppConfig):
> name = 'polls'
>
>
>
> On Sat, May 9, 2020 at 9:41 AM Nagaraju Singothu <
> nagarajusingoth...@gmail.com> wrote:
>
>> Dear Sir,
>>
>>First add your app in settings.py,then after
>> URLs.py
>>  from django.urls import path,include
>>  from ur(appname) import views
>>
>> On Sat 9 May, 2020, 5:42 AM Randy Zeitvogel, 
>> wrote:
>>
>>> I just started working with Django in the last couple of days.
>>> First environment is Ubuntu 19.10, python 3.7.5 and Django 3.1.  Second
>>> environment is Fedora 31, python 3.7.5, and Django 3.0.6.
>>> In both cases after I create the polls app and try it out, I get this:
>>>
>>> Page not found (404)
>>> Request Method: GET
>>> Request URL: http://localhost:8000/polls/
>>>
>>> Using the URLconf defined in mysite.urls, Django tried these URL
>>> patterns, in this order:
>>>
>>>1. admin/
>>>
>>> The current path, polls/, didn't match any of these.
>>>
>>> You're seeing this error because you have DEBUG = True in your Django
>>> settings file. Change that to False, and Django will display a standard
>>> 404 page.
>>>
>>>
>>> The feedback from the development web server (python manage.py
>>> runserver) is:
>>>
>>>
>>> jango version 3.0.6, using settings 'mysite.settings'
>>> Starting development server at http://127.0.0.1:8000/
>>> Quit the server with CONTROL-C.
>>> Not Found: /polls/
>>> [08/May/2020 17:28:16] "GET /polls/ HTTP/1.1" 404 1957
>>>
>>> My mysite/urls.py looks like this:
>>>
>>>
>>> from django.contrib import admin
>>> from django.urls import include, path
>>>
>>> urlpatterns = [
>>> path('polls/', include('polls.urls')),
>>> path('admin/', admin.site.urls),
>>> ]
>>>
>>>
>>> Any help would be appreciated.
>>>
>>>
>>> --
>>> 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/msgid/django-users/b7b3b071-7255-4fc1-84c8-db7d1766e5dd%40googlegroups.com
>>> 
>>> .
>>>
>> --
>> 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/msgid/django-users/CAMyGuAYu%2BpcZcgv9ciiiz9fpYQLWJSuMOa9ZE5V02V7r0UASZA%40mail.gmail.com
>> 
>> .
>>
> --
> 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/msgid/django-users/CALzWbqwm7A9SiaPfJVcYhMPPxFQe999nairQ0z1AqJwgxwkXxg%40mail.gmail.com
> 
> .
>

-- 
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/msgid/django-users/CAP6hVmA0-TCTj%2B%3DqqseEq%2BKjaVtiCo7bbSiLmNKX9-AnSZiCqg%40mail.gmail.com.


Re: Tutorial Part 1

2020-05-09 Thread tejasri mamidi
Did ,you place ur appname in installed app in settings

On Sat, May 9, 2020, 05:42 Randy Zeitvogel  wrote:

> I just started working with Django in the last couple of days.
> First environment is Ubuntu 19.10, python 3.7.5 and Django 3.1.  Second
> environment is Fedora 31, python 3.7.5, and Django 3.0.6.
> In both cases after I create the polls app and try it out, I get this:
>
> Page not found (404)
> Request Method: GET
> Request URL: http://localhost:8000/polls/
>
> Using the URLconf defined in mysite.urls, Django tried these URL
> patterns, in this order:
>
>1. admin/
>
> The current path, polls/, didn't match any of these.
>
> You're seeing this error because you have DEBUG = True in your Django
> settings file. Change that to False, and Django will display a standard
> 404 page.
>
>
> The feedback from the development web server (python manage.py runserver)
> is:
>
>
> jango version 3.0.6, using settings 'mysite.settings'
> Starting development server at http://127.0.0.1:8000/
> Quit the server with CONTROL-C.
> Not Found: /polls/
> [08/May/2020 17:28:16] "GET /polls/ HTTP/1.1" 404 1957
>
> My mysite/urls.py looks like this:
>
>
> from django.contrib import admin
> from django.urls import include, path
>
> urlpatterns = [
> path('polls/', include('polls.urls')),
> path('admin/', admin.site.urls),
> ]
>
>
> Any help would be appreciated.
>
>
> --
> 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/msgid/django-users/b7b3b071-7255-4fc1-84c8-db7d1766e5dd%40googlegroups.com
> 
> .
>

-- 
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/msgid/django-users/CAP6hVmBJa%2BQ%2BuS6GkoHuwJvPStWK%2B0SdF6Hk3t%3DdkgcazmNPFA%40mail.gmail.com.


Re: App Dev wanted

2020-04-29 Thread tejasri mamidi
I'm new django developer ,I wanna help you ...if need it ..email me

On Wed, Apr 29, 2020, 19:38 Arne Bollinger  wrote:

> Hey,
> We came with a project out of a Covid-19 Hackathon that we could not
> finish. Now we want to launch as fast as possible as long as people are
> still in need of social contact.
> https://devpost.com/software/corona-circles
>
> We want to develop an Open-Source Django App that creates Jitsi Meet
> Sessions and sends out Emails to participants. Pretty simple. 3 volunteer
> backend devs have left us with unfinished code, so now we want to pay
> somebody from our pockets, to get it online asap!
>
> Here is a head start, the frontend is almost ready:
> https://github.com/CoronaCircles/coronacircles-django
> I estimate roughly maximum 10 hours needed. We have a Budget of at least
> 1000€.
> Anybody wants to help us?
>
> Cheers,
> Arne
>
>
> --
> 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/msgid/django-users/81f7a052-7366-45b7-b2dc-ffe23a6c5050%40googlegroups.com
> 
> .
>

-- 
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/msgid/django-users/CAP6hVmDhf3WBK%2B1uvyO9Ff092_ngWO9qkrTvHB-b5ucDKAF8ng%40mail.gmail.com.


RE: Re: stack

2020-04-21 Thread Tejasri Mamidi
Sure,thank Sent from Mail for Windows 10 From: Rok KlancarSent: 20 April 2020 21:57To: Django usersSubject: Re: stack Do the official Django tutorial-- 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/msgid/django-users/d024215b-ac1e-4323-b6de-07e26152e6bd%40googlegroups.com. 

	

		Virus-free. www.avg.com
		
	
 



-- 
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/msgid/django-users/5e9ed0a5.1c69fb81.db0ca.5dac%40mx.google.com.


stack

2020-04-20 Thread tejasri mamidi
Hiii everyone ,,iam new to django ,can anyone suggest path to grow django 
skis, 

-- 
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/msgid/django-users/66ae5f42-bf04-4da8-a408-5e6358d4dc8d%40googlegroups.com.


Re: In pycharm errror

2020-04-11 Thread tejasri mamidi
Huh..its in projectname/projectname/manage.py how can handle it now

On Sat, Apr 11, 2020, 04:46 Andrew Fetting  wrote:

> Sounds like you are on file too deep. manage.py should be in {project
> name}\manage.py, not {project name}\{project name}\manage.py.
> Hope that helps.
>
> On Fri, Apr 10, 2020 at 5:23 PM Jatin Agrawal 
> wrote:
>
>> Can you please post an image of your directory structure? Maybe then I or
>> someone else can help you in a better way.
>>
>>
>> On Thursday, April 9, 2020 at 7:55:20 PM UTC+5:30, tejasri mamidi wrote:
>>>
>>> While executing py manage.py runserver ..
>>> Terminal showing this file will not found why..
>>
>> --
>> 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/msgid/django-users/2af77eef-71f4-4716-96be-72b3871906ec%40googlegroups.com
>> <https://groups.google.com/d/msgid/django-users/2af77eef-71f4-4716-96be-72b3871906ec%40googlegroups.com?utm_medium=email_source=footer>
>> .
>>
> --
> 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/msgid/django-users/CAOn-tti7Ej8AhT%3Dvgei8NMhKWeEzb9k5DUeaRRDNm_b2txCgWg%40mail.gmail.com
> <https://groups.google.com/d/msgid/django-users/CAOn-tti7Ej8AhT%3Dvgei8NMhKWeEzb9k5DUeaRRDNm_b2txCgWg%40mail.gmail.com?utm_medium=email_source=footer>
> .
>

-- 
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/msgid/django-users/CAP6hVmAY7w-iLQOo%3DM-vCfoxBerXFZqRWN3fhJO946ksGv8FQw%40mail.gmail.com.


Re: In pycharm errror

2020-04-10 Thread tejasri mamidi
I used dir command to check it ..I don't found manage.py file instead all
setting.py url.py there manage .py is missing

On Fri, Apr 10, 2020, 05:45 Phako Perez <13.phak...@gmail.com> wrote:

> Check the ‘ls’ command to verify is on directory you are running the
> manage.py
>
> And not sure about how you ran the command, but you should run as
>
> python manage.py runserver
>
> Regards
>
> Sent from my iPhone
>
> > On 9 Apr 2020, at 9:25, tejasri mamidi  wrote:
> >
> > While executing py manage.py runserver ..
> > Terminal showing this file will not found why..
> >
> > --
> > 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/msgid/django-users/c78171f3-b6f3-4f74-9cd1-a8c2a3b52d3d%40googlegroups.com
> .
>
> --
> 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/msgid/django-users/8AD8B671-4B36-4291-9352-0461CCADC872%40gmail.com
> .
>

-- 
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/msgid/django-users/CAP6hVmBuyGdnT5PGS0Bozj9kxBwXCGNj-EQRz8Yfhy1VTJsy0g%40mail.gmail.com.


Re: asgiref

2020-04-10 Thread tejasri mamidi
I don't know much about it


On Fri, Apr 10, 2020, 12:41 Mike Dewhirst  wrote:

> On 10/04/2020 4:55 pm, אורי wrote:
> > Hi,
> >
> > What is asgiref and why is it automatically installed when I upgrade
> > Django to 3.0 with pip?
>
> https://docs.djangoproject.com/en/3.0/topics/async/#async-adapter-functions
>
> > What does it do and is it required to be installed in production?
> >
> > אורי
> > u...@speedy.net 
> > --
> > 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/msgid/django-users/CABD5YeFa2Un8TcGFiB3X_i99czdNFAmU8XJP1qwi1OquQY22SQ%40mail.gmail.com
> > <
> https://groups.google.com/d/msgid/django-users/CABD5YeFa2Un8TcGFiB3X_i99czdNFAmU8XJP1qwi1OquQY22SQ%40mail.gmail.com?utm_medium=email_source=footer
> >.
>
> --
> 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/msgid/django-users/64100cc4-b977-b5da-3319-0d9904612703%40dewhirst.com.au
> .
>

-- 
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/msgid/django-users/CAP6hVmCR4jv%2B_tmjde-rfJL8%2BEfw17KEAdQXD_16LBnAZk_FFA%40mail.gmail.com.


In pycharm errror

2020-04-09 Thread tejasri mamidi
While executing py manage.py runserver ..
Terminal showing this file will not found why..

-- 
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/msgid/django-users/c78171f3-b6f3-4f74-9cd1-a8c2a3b52d3d%40googlegroups.com.