Re: RuntimeError: Model class polls38.polls.models.Question doesn't declare an explicit app_label and isn't in an application in INSTALLED_APPS.

2020-12-03 Thread Ryan Gedwill
you may also need to change polls/apps.py to have a config class

On Thu, Dec 3, 2020 at 5:31 PM Ryan Gedwill  wrote:

> you at least need to add 'polls' to your INSTALLED_APPS in settings.py.
> You should also remove the line you put in manage.py - that file should
> rarely be touched at all.
>
> This is not a system path problem
>
>
>
> On Thu, Dec 3, 2020 at 12:38 PM Ennio Santos 
> wrote:
>
>> I developed some small web app using Django, but I had not used virtual
>> env up to the moment.
>>
>> I am facing the erro above, I can imagine that is related to some kind of
>> path definition  that is not properly defined, but have no idea where to
>> begin.
>>
>> *My Env*
>>
>> *windows 10 home*
>> Currently using *CONDA, version 4.9.2*, installed on my "C" driver.
>>
>> # conda environments:
>> #
>> base C:\ProgramData\Anaconda3
>> pranos39 C:\ProgramData\Anaconda3\envs\pranos39
>> agen37   C:\Users\ennio\.conda\envs\agen37
>> agen39   C:\Users\ennio\.conda\envs\agen39
>> baseold  C:\Users\ennio\.conda\envs\baseold
>> python38 C:\Users\ennio\.conda\envs\python38
>> *  d:\conda_env\py38 (*this is the one I
>> activate*)
>>
>> And the *editor is vscode 1.51.1* version. using pylint, and it is
>> pointing to the python env above.
>>
>>
>>
>>
>>
>>
>>
>> I have the driver "D" where is the conda env being used. And also, where
>> is the source code.
>>
>> *D:\Linguagem\mooc\code\polls38*
>>
>>
>>
>>
>>
>> *Tutorial being used*
>>
>> since it is the first time using the virtual env to build a django app, I
>> decide to use the tutorial available to test:
>>
>> Writing your first Django app, part 1 | Django documentation | Django
>> (djangoproject.com)
>> 
>> Using the exemplo, as it is.
>>
>>
>>  (d:\conda_env\py38) D:\Linguagem\mooc\code\polls38>conda list
>>
>> # *packages in environment *at d:\conda_env\py38:
>> #
>> # NameVersion   Build  Channel
>>
>> asgiref   3.3.1  pyhd3eb1b0_0
>> astroid   2.4.2py38_0
>> ca-certificates   2020.10.140
>> certifi   2020.11.8py38haa95532_0
>> colorama  0.4.4  py_0
>> django3.1.3  pyhd3eb1b0_0
>> isort 5.6.4  py_0
>> krb5  1.17.1   hc04afaa_0
>> lazy-object-proxy 1.4.3py38he774522_0
>> libpq 12.2 h3235a2c_0
>> mccabe0.6.1py38_1
>> openssl   1.1.1h   he774522_0
>> pip   20.3 py38haa95532_0
>> psycopg2  2.8.5py38h7a1dbc1_0
>> pylint2.6.0py38_0
>> python3.8.5h5fd99cc_1
>> pytz  2020.4 pyhd3eb1b0_0
>> setuptools50.3.1   py38haa95532_1
>> six   1.15.0   py38haa95532_0
>> sqlite3.33.0   h2a8f88b_0
>> sqlparse  0.4.1  py_0
>> tk8.6.10   he774522_0
>> toml  0.10.1 py_0
>> vc14.1 h0510ff6_4
>> vs2015_runtime14.16.27012  hf0eaf9b_3
>> wheel 0.35.1 pyhd3eb1b0_0
>> wincertstore  0.2  py38_0
>> wrapt 1.11.2   py38he774522_0
>> zlib  1.2.11   h62dcd97_4
>>
>> *The settings.py file*
>>
>>
>> from pathlib import Path
>>
>> # Build paths inside the project like this: BASE_DIR / 'subdir'.
>> BASE_DIR = Path(__file__).resolve().parent.parent
>> print(BASE_DIR)
>>
>> # Quick-start development settings - unsuitable for production
>> # See https://docs.djangoproject.com/en/3.1/howto/deployment/checklist/
>>
>> # SECURITY WARNING: keep the secret key used in production secret!
>> SECRET_KEY = ''
>>
>> # SECURITY WARNING: don't run with debug turned on in production!
>> DEBUG = True
>>
>> ALLOWED_HOSTS = []
>>
>>
>> # 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',
>> ]
>>
>> MIDDLEWARE = [
>> 'django.middleware.security.SecurityMiddleware',
>> 'django.contrib.sessions.middleware.SessionMiddleware',
>> 'django.middleware.common.CommonMiddleware',
>> 'django.middleware.csrf.CsrfViewMiddleware',
>> 

Re: RuntimeError: Model class polls38.polls.models.Question doesn't declare an explicit app_label and isn't in an application in INSTALLED_APPS.

2020-12-03 Thread Ryan Gedwill
you at least need to add 'polls' to your INSTALLED_APPS in settings.py. You
should also remove the line you put in manage.py - that file should rarely
be touched at all.

This is not a system path problem



On Thu, Dec 3, 2020 at 12:38 PM Ennio Santos  wrote:

> I developed some small web app using Django, but I had not used virtual
> env up to the moment.
>
> I am facing the erro above, I can imagine that is related to some kind of
> path definition  that is not properly defined, but have no idea where to
> begin.
>
> *My Env*
>
> *windows 10 home*
> Currently using *CONDA, version 4.9.2*, installed on my "C" driver.
>
> # conda environments:
> #
> base C:\ProgramData\Anaconda3
> pranos39 C:\ProgramData\Anaconda3\envs\pranos39
> agen37   C:\Users\ennio\.conda\envs\agen37
> agen39   C:\Users\ennio\.conda\envs\agen39
> baseold  C:\Users\ennio\.conda\envs\baseold
> python38 C:\Users\ennio\.conda\envs\python38
> *  d:\conda_env\py38 (*this is the one I
> activate*)
>
> And the *editor is vscode 1.51.1* version. using pylint, and it is
> pointing to the python env above.
>
>
>
>
>
>
>
> I have the driver "D" where is the conda env being used. And also, where
> is the source code.
>
> *D:\Linguagem\mooc\code\polls38*
>
>
>
>
>
> *Tutorial being used*
>
> since it is the first time using the virtual env to build a django app, I
> decide to use the tutorial available to test:
>
> Writing your first Django app, part 1 | Django documentation | Django
> (djangoproject.com)
> 
> Using the exemplo, as it is.
>
>
>  (d:\conda_env\py38) D:\Linguagem\mooc\code\polls38>conda list
>
> # *packages in environment *at d:\conda_env\py38:
> #
> # NameVersion   Build  Channel
>
> asgiref   3.3.1  pyhd3eb1b0_0
> astroid   2.4.2py38_0
> ca-certificates   2020.10.140
> certifi   2020.11.8py38haa95532_0
> colorama  0.4.4  py_0
> django3.1.3  pyhd3eb1b0_0
> isort 5.6.4  py_0
> krb5  1.17.1   hc04afaa_0
> lazy-object-proxy 1.4.3py38he774522_0
> libpq 12.2 h3235a2c_0
> mccabe0.6.1py38_1
> openssl   1.1.1h   he774522_0
> pip   20.3 py38haa95532_0
> psycopg2  2.8.5py38h7a1dbc1_0
> pylint2.6.0py38_0
> python3.8.5h5fd99cc_1
> pytz  2020.4 pyhd3eb1b0_0
> setuptools50.3.1   py38haa95532_1
> six   1.15.0   py38haa95532_0
> sqlite3.33.0   h2a8f88b_0
> sqlparse  0.4.1  py_0
> tk8.6.10   he774522_0
> toml  0.10.1 py_0
> vc14.1 h0510ff6_4
> vs2015_runtime14.16.27012  hf0eaf9b_3
> wheel 0.35.1 pyhd3eb1b0_0
> wincertstore  0.2  py38_0
> wrapt 1.11.2   py38he774522_0
> zlib  1.2.11   h62dcd97_4
>
> *The settings.py file*
>
>
> from pathlib import Path
>
> # Build paths inside the project like this: BASE_DIR / 'subdir'.
> BASE_DIR = Path(__file__).resolve().parent.parent
> print(BASE_DIR)
>
> # Quick-start development settings - unsuitable for production
> # See https://docs.djangoproject.com/en/3.1/howto/deployment/checklist/
>
> # SECURITY WARNING: keep the secret key used in production secret!
> SECRET_KEY = ''
>
> # SECURITY WARNING: don't run with debug turned on in production!
> DEBUG = True
>
> ALLOWED_HOSTS = []
>
>
> # 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',
> ]
>
> MIDDLEWARE = [
> 'django.middleware.security.SecurityMiddleware',
> 'django.contrib.sessions.middleware.SessionMiddleware',
> 'django.middleware.common.CommonMiddleware',
> 'django.middleware.csrf.CsrfViewMiddleware',
> 'django.contrib.auth.middleware.AuthenticationMiddleware',
> 'django.contrib.messages.middleware.MessageMiddleware',
> 'django.middleware.clickjacking.XFrameOptionsMiddleware',
> ]
>
> ROOT_URLCONF = 'polls38.urls'
>
> TEMPLATES = [
> {
> 'BACKEND': 

How to Get Video to Play

2020-12-03 Thread Nick Sokol
Hi All,

I am trying to play uploaded video on a django web app but I keep getting a 
white screen and audio. 

Does anyone know how to fix this? Also, is this a django issue or html issue? 

Thank you! 

-- 
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/3EF43401-A003-4250-AFD0-4A6867D93196%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/3EF43401-A003-4250-AFD0-4A6867D93196%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/3EF43401-A003-4250-AFD0-4A6867D93196%40gmail.com.


Re: Looking to join a team in a Django Project to gain Experience

2020-12-03 Thread Manav Agarwal
We may form a team ourselves.

On Tue, Sep 22, 2020 at 6:09 AM ahmed.he...@gmail.com <
ahmed.heshamel...@gmail.com> wrote:

> Hi all,
>
> I am looking for a team of developers to join them in a project to enhance
> my skills and add to my portfolio.  I am available part time.
>
> Thanks
>
> --
> 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/6e15411d-b25d-40c8-a987-e65da9b3c297n%40googlegroups.com
> 
> .
>


-- 
Regards
Manav Agarwal

[image: https://www.linkedin.com/in/manav-agarwal-982553190/]


*"If your actions inspire others to dream more, learn more, do more and
become more, you are a leader.”*

-- 
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/CACbxD0AJJ9OnhP4KWfes-M6PfshiS3Nd4HsgMrQUqzLFZNVVCA%40mail.gmail.com.


Re: Looking to join a team in a Django Project to gain Experience

2020-12-03 Thread Chuck
 I am interested also.
On Thursday, December 3, 2020, 08:19:49 AM PST, Ammar M. Adam 
 wrote:  
 
 
We are all interested so why don't we all think of an idea and try to create a 
repo and start working .
Any ideas please list it in this whatsapp group : 
https://chat.whatsapp.com/FqV7WfsfdMrL3RGZ0EqPf7
On 3 Dec 2020 18:14, "شيماء شعبان حسن"  wrote:

hi,
I am interested.
‫في الخميس، 3 ديسمبر 2020 في 3:55 م تمت كتابة ما يلي بواسطة ‪Brandon Del Pozo‬‏ 
<‪branz...@gmail.com‬‏>:‬

I'm interested
On Wed, Dec 2, 2020 at 11:31 AM Anselme Gildas Tchassem Boutchouang 
 wrote:

https://github.com/AnselmeG300
Le mer. 2 déc. 2020 à 09:09, Anselme Gildas Tchassem Boutchouang 
 a écrit :

hi,
I am interested.
Le mar. 1 déc. 2020 à 15:30, Saif Ul Islam  a écrit 
:

Hello! 

This is really interesting - it's always fun to do work in teams and meet new 
people with similar skill sets and interests. I can't commit as a always 
available, but I'm happy to contribute whatever I can for some hobbyist 
projects, ideas.
About me, I'm a Undergrad at FAST NUCES, Karachi right now pursuing Bachelors 
in Computer Science. I have some experience with Data Science and Web Dev, 
Javascript and Python, React, Django, ExpressJS, heroku, vercel, netlify, 
Messenger API etc. Here' my github, https://github.com/ rubix982, and my 
LinkedIn, https://www. linkedin.com/in/saif-ul-islam- 93786b187/, if you want 
to get in contact with me,

Thanks! 

Hope to see amazing minds from this thread soon. 

Ciao! 

On Tuesday, December 1, 2020 at 7:17:41 PM UTC+5 vamshi...@gmail.com wrote:

hiI am intrested 

On Tuesday, December 1, 2020 at 7:43:58 PM UTC+5:30 Mahendra Yadav wrote:

i am intersted
Mahendra A

On Tue, Dec 1, 2020 at 6:47 AM Monaco investment  wrote:

I am also interested.

Get Outlook for Android
From: django...@googlegroups.com  on behalf of 
boyua...@gmail.com 
Sent: Monday, November 30, 2020 7:35:31 PM
To: django...@googlegroups.com 
Subject: Re: Looking to join a team in a Django Project to gain Experience I'm 
also interested.
On Monday, November 30, 2020, 07:01:48 AM PST, Md Reyajuddin 
 wrote:

hi,
I am interested.
On Tue, Sep 22, 2020 at 6:09 AM ahmed.he...@gmail.com  
wrote:

Hi all,
I am looking for a team of developers to join them in a project to enhance my 
skills and add to my portfolio.  I am available part time.

Thanks

-- 
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 
todjango-users...@googlegroups. com.
To view this discussion on the web visit https://groups.google.com/d/ 
msgid/django-users/6e15411d- b25d-40c8-a987-e65da9b3c297n% 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 
todjango-users...@googlegroups. com.
To view this discussion on the web visit https://groups.google.com/d/ 
msgid/django-users/CAEMKzF% 2Bqg6voJeA0Oanz1N%3Dp%3DXW% 
3D8X0pHYU0%2BoNByrdqg_7uZQ% 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 
todjango-users...@googlegroups. com.
To view this discussion on the web visit https://groups.google.com/d/ 
msgid/django-users/1588368606. 1796518.1606761331585%40mail. yahoo.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...@googlegroups. com.


To view this discussion on the web visit https://groups.google.com/d/ 
msgid/django-users/ AM6PR03MB5957E1FC2A5754B8AE3E0 746A7F40%40AM6PR03MB5957. 
eurprd03.prod.outlook.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+unsubscribe@ googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/ 
msgid/django-users/05bf20b0- 6250-42ad-8a17-e22603141a04n% 40googlegroups.com.



-- 
Anselme Gildas TCHASSEM BOUTCHOUANG
Protestant University of Central Africa (PUCA) / Université protestante 
d'Afrique centrale (UPAC)Master 2Computer Engineering / Génie 
Informatique(+237) 696 319 191 / (+237) 698 544 992 / Email : 
aansegild...@yahoo.fr / LinkedIN : Profil LinkedIN / Facebook : Profil Facebook 
 / Whatsapp: (+237) 696 319 191 




-- 
Anselme Gildas TCHASSEM BOUTCHOUANG
Protestant University of Central Africa (PUCA) / Université protestante 
d'Afrique centrale (UPAC)Master 2Computer Engineering / Génie 
Informatique(+237) 696 319 191 / (+237) 698 544 992 / Email : 
aansegild...@yahoo.fr / LinkedIN : Profil LinkedIN / Facebook : Profil Facebook 
 / Whatsapp: (+237) 696 319 191 



-- 
You received 

Re: Video calling app

2020-12-03 Thread Kunal Solanke
WEBRTC is what you want to do. You can easily do with a cloud based
solutions like peerjs.

On Thu, Dec 3, 2020, 22:56 sakshi jain  wrote:

> I want partnership
>
> On Thu, Dec 3, 2020, 22:54 Ronak Mistry  wrote:
>
>> Hello there,
>> I wanted to create a Django project on the video calling app. Can someone
>> please say how to start and give me some resources on 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+unsubscr...@googlegroups.com.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/django-users/CA%2BAL0AvEaaWASvT5t2O6-k%3D5SrZyJpzC5yREsE6nDcxLGQo2og%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/CAJhs3iOSPkbaK_o31LQ84%3DJzwEnsO_t2CZbYvi931ek-HVj%2Bcw%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/CAOecAnx5%2B%3Dm7MtM2Zesvg3uvqGGvzaKjSxHV1zbRwud0%3Df%2BrFg%40mail.gmail.com.


Re: Video calling app

2020-12-03 Thread sakshi jain
I want partnership

On Thu, Dec 3, 2020, 22:54 Ronak Mistry  wrote:

> Hello there,
> I wanted to create a Django project on the video calling app. Can someone
> please say how to start and give me some resources on 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+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CA%2BAL0AvEaaWASvT5t2O6-k%3D5SrZyJpzC5yREsE6nDcxLGQo2og%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/CAJhs3iOSPkbaK_o31LQ84%3DJzwEnsO_t2CZbYvi931ek-HVj%2Bcw%40mail.gmail.com.


Video calling app

2020-12-03 Thread Ronak Mistry
Hello there,
I wanted to create a Django project on the video calling app. Can someone
please say how to start and give me some resources on 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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CA%2BAL0AvEaaWASvT5t2O6-k%3D5SrZyJpzC5yREsE6nDcxLGQo2og%40mail.gmail.com.


Re:

2020-12-03 Thread Kasper Laudrup

Hi Dhruvil,

On 03/12/2020 17.17, Dhruvil Shah wrote:

I suggest u to watch tutorial on YT if
Code with Harry
Geeky Shows
Code with Mitch



Will these tutorials give hints on how to remember to save your code 
before attempting to run it or compile it in case of compiled languages?


Both of those are things I sometimes forget as well.

Otherwise I fail to see how this is relevant in this context.

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, 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/c19c3a07-4a6f-c0f7-352d-078c87aa6a57%40stacktrace.dk.


Re: Looking to join a team in a Django Project to gain Experience

2020-12-03 Thread Ammar M. Adam
We are all interested so why don't we all think of an idea and try to
create a repo and start working .
Any ideas please list it in this whatsapp group :
https://chat.whatsapp.com/FqV7WfsfdMrL3RGZ0EqPf7
On 3 Dec 2020 18:14, "شيماء شعبان حسن"  wrote:

> hi,
>
> I am interested.
>
> ‫في الخميس، 3 ديسمبر 2020 في 3:55 م تمت كتابة ما يلي بواسطة ‪Brandon Del
> Pozo‬‏ <‪branz...@gmail.com‬‏>:‬
>
>> I'm interested
>>
>> On Wed, Dec 2, 2020 at 11:31 AM Anselme Gildas Tchassem Boutchouang <
>> tbago...@gmail.com> wrote:
>>
>>> https://github.com/AnselmeG300
>>>
>>> Le mer. 2 déc. 2020 à 09:09, Anselme Gildas Tchassem Boutchouang <
>>> tbago...@gmail.com> a écrit :
>>>
 hi,

 I am interested.

 Le mar. 1 déc. 2020 à 15:30, Saif Ul Islam 
 a écrit :

> Hello!
>
> This is really interesting - it's always fun to do work in teams and
> meet new people with similar skill sets and interests. I can't commit as a
> always available, but I'm happy to contribute whatever I can for some
> hobbyist projects, ideas.
> About me, I'm a Undergrad at FAST NUCES, Karachi right now pursuing
> Bachelors in Computer Science. I have some experience with Data Science 
> and
> Web Dev, Javascript and Python, React, Django, ExpressJS, heroku, vercel,
> netlify, Messenger API etc. Here' my github, https://github.com/
> rubix982, and my LinkedIn, https://www.linkedin.com/in/saif-ul-islam-
> 93786b187/, if you want to get in contact with me,
>
> Thanks!
>
> Hope to see amazing minds from this thread soon.
>
> Ciao!
>
> On Tuesday, December 1, 2020 at 7:17:41 PM UTC+5 vamshi...@gmail.com
> wrote:
>
>> hi
>> I am intrested
>>
>> On Tuesday, December 1, 2020 at 7:43:58 PM UTC+5:30 Mahendra Yadav
>> wrote:
>>
>>> i am intersted
>>> Mahendra A
>>>
>>>
>>> On Tue, Dec 1, 2020 at 6:47 AM Monaco investment 
>>> wrote:
>>>
 I am also interested.

 Get Outlook for Android 

 --
 *From:* django...@googlegroups.com  on
 behalf of boyua...@gmail.com 
 *Sent:* Monday, November 30, 2020 7:35:31 PM
 *To:* django...@googlegroups.com 
 *Subject:* Re: Looking to join a team in a Django Project to gain
 Experience

 I'm also interested.

 On Monday, November 30, 2020, 07:01:48 AM PST, Md Reyajuddin <
 md.reya...@gmail.com> wrote:


 hi,

 I am interested.

 On Tue, Sep 22, 2020 at 6:09 AM ahmed.he...@gmail.com <
 ahmed.he...@gmail.com> wrote:

 Hi all,

 I am looking for a team of developers to join them in a project to
 enhance my skills and add to my portfolio.  I am available part time.

 Thanks

 --
 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...@googlegroups.com.
 To view this discussion on the web visit
 https://groups.google.com/d/msgid/django-users/6e15411d-
 b25d-40c8-a987-e65da9b3c297n%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...@googlegroups.com.
 To view this discussion on the web visit
 https://groups.google.com/d/msgid/django-users/CAEMKzF%
 2Bqg6voJeA0Oanz1N%3Dp%3DXW%3D8X0pHYU0%2BoNByrdqg_7uZQ%
 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...@googlegroups.com.
 To view this discussion on the web visit
 https://groups.google.com/d/msgid/django-users/1588368606.
 1796518.1606761331585%40mail.yahoo.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 

Re:

2020-12-03 Thread Dhruvil Shah
I suggest u to watch tutorial on YT if
Code with Harry
Geeky Shows
Code with Mitch


On Thu, 3 Dec 2020, 19:26 neha,  wrote:

> Hi,
>
> I am a beginner in Django,I watched a tutorial on Django from edx
> course,and followed the same procedures but getting 404 error for the very
> basic app(hello app). Can someone please help me.
>
> I have attached the screenshots of the error page and my codes.
>
>
>
> Sent from Mail  for
> Windows 10
>
>
>
> --
> 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/1AF7F91D-2668-461E-B020-65FD005CB6FC%40hxcore.ol
> 
> .
>

-- 
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/CADsP_iyC6oBOWJOiyqNakL_N6cGWu3mYMZe5aPGjBHeu-NhW5g%40mail.gmail.com.


Re: Looking to join a team in a Django Project to gain Experience

2020-12-03 Thread شيماء شعبان حسن
 hi,

I am interested.

‫في الخميس، 3 ديسمبر 2020 في 3:55 م تمت كتابة ما يلي بواسطة ‪Brandon Del
Pozo‬‏ <‪branz...@gmail.com‬‏>:‬

> I'm interested
>
> On Wed, Dec 2, 2020 at 11:31 AM Anselme Gildas Tchassem Boutchouang <
> tbago...@gmail.com> wrote:
>
>> https://github.com/AnselmeG300
>>
>> Le mer. 2 déc. 2020 à 09:09, Anselme Gildas Tchassem Boutchouang <
>> tbago...@gmail.com> a écrit :
>>
>>> hi,
>>>
>>> I am interested.
>>>
>>> Le mar. 1 déc. 2020 à 15:30, Saif Ul Islam 
>>> a écrit :
>>>
 Hello!

 This is really interesting - it's always fun to do work in teams and
 meet new people with similar skill sets and interests. I can't commit as a
 always available, but I'm happy to contribute whatever I can for some
 hobbyist projects, ideas.
 About me, I'm a Undergrad at FAST NUCES, Karachi right now pursuing
 Bachelors in Computer Science. I have some experience with Data Science and
 Web Dev, Javascript and Python, React, Django, ExpressJS, heroku, vercel,
 netlify, Messenger API etc. Here' my github,
 https://github.com/rubix982, and my LinkedIn,
 https://www.linkedin.com/in/saif-ul-islam-93786b187/, if you want to
 get in contact with me,

 Thanks!

 Hope to see amazing minds from this thread soon.

 Ciao!

 On Tuesday, December 1, 2020 at 7:17:41 PM UTC+5 vamshi...@gmail.com
 wrote:

> hi
> I am intrested
>
> On Tuesday, December 1, 2020 at 7:43:58 PM UTC+5:30 Mahendra Yadav
> wrote:
>
>> i am intersted
>> Mahendra A
>>
>>
>> On Tue, Dec 1, 2020 at 6:47 AM Monaco investment 
>> wrote:
>>
>>> I am also interested.
>>>
>>> Get Outlook for Android 
>>>
>>> --
>>> *From:* django...@googlegroups.com  on
>>> behalf of boyua...@gmail.com 
>>> *Sent:* Monday, November 30, 2020 7:35:31 PM
>>> *To:* django...@googlegroups.com 
>>> *Subject:* Re: Looking to join a team in a Django Project to gain
>>> Experience
>>>
>>> I'm also interested.
>>>
>>> On Monday, November 30, 2020, 07:01:48 AM PST, Md Reyajuddin <
>>> md.reya...@gmail.com> wrote:
>>>
>>>
>>> hi,
>>>
>>> I am interested.
>>>
>>> On Tue, Sep 22, 2020 at 6:09 AM ahmed.he...@gmail.com <
>>> ahmed.he...@gmail.com> wrote:
>>>
>>> Hi all,
>>>
>>> I am looking for a team of developers to join them in a project to
>>> enhance my skills and add to my portfolio.  I am available part time.
>>>
>>> Thanks
>>>
>>> --
>>> 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...@googlegroups.com.
>>> To view this discussion on the web visit
>>> https://groups.google.com/d/msgid/django-users/6e15411d-b25d-40c8-a987-e65da9b3c297n%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...@googlegroups.com.
>>> To view this discussion on the web visit
>>> https://groups.google.com/d/msgid/django-users/CAEMKzF%2Bqg6voJeA0Oanz1N%3Dp%3DXW%3D8X0pHYU0%2BoNByrdqg_7uZQ%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...@googlegroups.com.
>>> To view this discussion on the web visit
>>> https://groups.google.com/d/msgid/django-users/1588368606.1796518.1606761331585%40mail.yahoo.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...@googlegroups.com.
>>>
>> To view this discussion on the web visit
>>> https://groups.google.com/d/msgid/django-users/AM6PR03MB5957E1FC2A5754B8AE3E0746A7F40%40AM6PR03MB5957.eurprd03.prod.outlook.com
>>> 

RE:

2020-12-03 Thread neha
Ya ,that was the mistake I was doing. After saving all the files, I got the output.Thanks! Sent from Mail for Windows 10 From: Naresh SainiSent: Thursday, December 3, 2020 9:31 PMTo: django-users@googlegroups.comSubject: Re: Hi Neha,     I the screenshot of VS code I see that file not saved.Please save file after that try it again.Thank you On Thu, 3 Dec 2020, 20:39 neha,  wrote:Okay, I will check it out.Thanks guys. Sent from Mail for Windows 10 From: Varun KumarSent: Thursday, December 3, 2020 7:42 PMTo: django-users@googlegroups.comSubject: Re: Hello Neha,I think it's because whatever changes you've applied in your script throught VSCODE. You haven't saved it yet. So whenever you are trying to rerun it. What actually is being done is that your preedited code is begin rerun again n again. Fix: Just save all the scripts and then run it. It will work.  On Thu, 3 Dec, 2020, 7:26 pm neha,  wrote:Hi,I am a beginner in Django,I watched a tutorial on Django from edx course,and followed the same procedures but getting 404 error for the very basic app(hello app). Can someone please help me.I have attached the screenshots of the error page and my codes. Sent from Mail for Windows 10 -- 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/1AF7F91D-2668-461E-B020-65FD005CB6FC%40hxcore.ol.-- 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/CAL9T29vMSjK7GJxA5MPhcgmZ6teXixvKrHaYC5VB6Kh7KrDB%2Bw%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/C971ED97-D73E-4EB2-85A5-818418C0779B%40hxcore.ol.-- 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/CACqHDZa%3D6DfD9-oN0x5YHDvDvDS%2BgBnj%2BQWnQC22sYvVOdhV6Q%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/BCE35D08-A0F1-4639-9453-11AD518ED5F2%40hxcore.ol.


Re:

2020-12-03 Thread Naresh Saini
Hi Neha,
 I the screenshot of VS code I see that file not saved.Please save file
after that try it again.
Thank you

On Thu, 3 Dec 2020, 20:39 neha,  wrote:

> Okay, I will check it out.
>
> Thanks guys.
>
>
>
> Sent from Mail  for
> Windows 10
>
>
>
> *From: *Varun Kumar 
> *Sent: *Thursday, December 3, 2020 7:42 PM
> *To: *django-users@googlegroups.com
> *Subject: *Re:
>
>
>
> Hello Neha,
>
> I think it's because whatever changes you've applied in your script
> throught VSCODE. You haven't saved it yet. So whenever you are trying to
> rerun it. What actually is being done is that your preedited code is begin
> rerun again n again. Fix: Just save all the scripts and then run it. It
> will work.
>
>
>
> On Thu, 3 Dec, 2020, 7:26 pm neha,  wrote:
>
> Hi,
>
> I am a beginner in Django,I watched a tutorial on Django from edx
> course,and followed the same procedures but getting 404 error for the very
> basic app(hello app). Can someone please help me.
>
> I have attached the screenshots of the error page and my codes.
>
>
>
> Sent from Mail  for
> Windows 10
>
>
>
> --
> 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/1AF7F91D-2668-461E-B020-65FD005CB6FC%40hxcore.ol
> 
> .
>
> --
> 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/CAL9T29vMSjK7GJxA5MPhcgmZ6teXixvKrHaYC5VB6Kh7KrDB%2Bw%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/C971ED97-D73E-4EB2-85A5-818418C0779B%40hxcore.ol
> 
> .
>

-- 
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/CACqHDZa%3D6DfD9-oN0x5YHDvDvDS%2BgBnj%2BQWnQC22sYvVOdhV6Q%40mail.gmail.com.


RE:

2020-12-03 Thread neha
Okay, I will check it out.Thanks guys. Sent from Mail for Windows 10 From: Varun KumarSent: Thursday, December 3, 2020 7:42 PMTo: django-users@googlegroups.comSubject: Re: Hello Neha,I think it's because whatever changes you've applied in your script throught VSCODE. You haven't saved it yet. So whenever you are trying to rerun it. What actually is being done is that your preedited code is begin rerun again n again. Fix: Just save all the scripts and then run it. It will work.  On Thu, 3 Dec, 2020, 7:26 pm neha,  wrote:Hi,I am a beginner in Django,I watched a tutorial on Django from edx course,and followed the same procedures but getting 404 error for the very basic app(hello app). Can someone please help me.I have attached the screenshots of the error page and my codes. Sent from Mail for Windows 10 -- 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/1AF7F91D-2668-461E-B020-65FD005CB6FC%40hxcore.ol.-- 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/CAL9T29vMSjK7GJxA5MPhcgmZ6teXixvKrHaYC5VB6Kh7KrDB%2Bw%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/C971ED97-D73E-4EB2-85A5-818418C0779B%40hxcore.ol.


Re:

2020-12-03 Thread Varun Kumar
Hello Neha,
I think it's because whatever changes you've applied in your script
throught VSCODE. You haven't saved it yet. So whenever you are trying to
rerun it. What actually is being done is that your preedited code is begin
rerun again n again. Fix: Just save all the scripts and then run it. It
will work.

On Thu, 3 Dec, 2020, 7:26 pm neha,  wrote:

> Hi,
>
> I am a beginner in Django,I watched a tutorial on Django from edx
> course,and followed the same procedures but getting 404 error for the very
> basic app(hello app). Can someone please help me.
>
> I have attached the screenshots of the error page and my codes.
>
>
>
> Sent from Mail  for
> Windows 10
>
>
>
> --
> 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/1AF7F91D-2668-461E-B020-65FD005CB6FC%40hxcore.ol
> 
> .
>

-- 
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/CAL9T29vMSjK7GJxA5MPhcgmZ6teXixvKrHaYC5VB6Kh7KrDB%2Bw%40mail.gmail.com.


Re:

2020-12-03 Thread Abhishek Choudhury
Hello Neha,

As per your screenshot I can tell, You have not added your app path to the
Urls.py file. Add the path, it will work just fine.

*With Best Regards,*
Abhishek Choudhury
Ph. No.: +91 7903717967
LinkedIN:  https://www.linkedin.com/in/yesabhishek/





On Thu, Dec 3, 2020 at 7:25 PM neha  wrote:

> Hi,
>
> I am a beginner in Django,I watched a tutorial on Django from edx
> course,and followed the same procedures but getting 404 error for the very
> basic app(hello app). Can someone please help me.
>
> I have attached the screenshots of the error page and my codes.
>
>
>
> Sent from Mail  for
> Windows 10
>
>
>
> --
> 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/1AF7F91D-2668-461E-B020-65FD005CB6FC%40hxcore.ol
> 
> .
>

-- 
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/CA%2B3kJUbFuT04MexX1zbHUPG8Vkz7M5bcB2SyGgi7QYCpcEOZHw%40mail.gmail.com.


Re: Looking to join a team in a Django Project to gain Experience

2020-12-03 Thread Brandon Del Pozo
I'm interested

On Wed, Dec 2, 2020 at 11:31 AM Anselme Gildas Tchassem Boutchouang <
tbago...@gmail.com> wrote:

> https://github.com/AnselmeG300
>
> Le mer. 2 déc. 2020 à 09:09, Anselme Gildas Tchassem Boutchouang <
> tbago...@gmail.com> a écrit :
>
>> hi,
>>
>> I am interested.
>>
>> Le mar. 1 déc. 2020 à 15:30, Saif Ul Islam 
>> a écrit :
>>
>>> Hello!
>>>
>>> This is really interesting - it's always fun to do work in teams and
>>> meet new people with similar skill sets and interests. I can't commit as a
>>> always available, but I'm happy to contribute whatever I can for some
>>> hobbyist projects, ideas.
>>> About me, I'm a Undergrad at FAST NUCES, Karachi right now pursuing
>>> Bachelors in Computer Science. I have some experience with Data Science and
>>> Web Dev, Javascript and Python, React, Django, ExpressJS, heroku, vercel,
>>> netlify, Messenger API etc. Here' my github, https://github.com/rubix982,
>>> and my LinkedIn, https://www.linkedin.com/in/saif-ul-islam-93786b187/,
>>> if you want to get in contact with me,
>>>
>>> Thanks!
>>>
>>> Hope to see amazing minds from this thread soon.
>>>
>>> Ciao!
>>>
>>> On Tuesday, December 1, 2020 at 7:17:41 PM UTC+5 vamshi...@gmail.com
>>> wrote:
>>>
 hi
 I am intrested

 On Tuesday, December 1, 2020 at 7:43:58 PM UTC+5:30 Mahendra Yadav
 wrote:

> i am intersted
> Mahendra A
>
>
> On Tue, Dec 1, 2020 at 6:47 AM Monaco investment 
> wrote:
>
>> I am also interested.
>>
>> Get Outlook for Android 
>>
>> --
>> *From:* django...@googlegroups.com  on
>> behalf of boyua...@gmail.com 
>> *Sent:* Monday, November 30, 2020 7:35:31 PM
>> *To:* django...@googlegroups.com 
>> *Subject:* Re: Looking to join a team in a Django Project to gain
>> Experience
>>
>> I'm also interested.
>>
>> On Monday, November 30, 2020, 07:01:48 AM PST, Md Reyajuddin <
>> md.reya...@gmail.com> wrote:
>>
>>
>> hi,
>>
>> I am interested.
>>
>> On Tue, Sep 22, 2020 at 6:09 AM ahmed.he...@gmail.com <
>> ahmed.he...@gmail.com> wrote:
>>
>> Hi all,
>>
>> I am looking for a team of developers to join them in a project to
>> enhance my skills and add to my portfolio.  I am available part time.
>>
>> Thanks
>>
>> --
>> 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...@googlegroups.com.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/django-users/6e15411d-b25d-40c8-a987-e65da9b3c297n%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...@googlegroups.com.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/django-users/CAEMKzF%2Bqg6voJeA0Oanz1N%3Dp%3DXW%3D8X0pHYU0%2BoNByrdqg_7uZQ%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...@googlegroups.com.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/django-users/1588368606.1796518.1606761331585%40mail.yahoo.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...@googlegroups.com.
>>
> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/django-users/AM6PR03MB5957E1FC2A5754B8AE3E0746A7F40%40AM6PR03MB5957.eurprd03.prod.outlook.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 

Re: Date validation in javascript

2020-12-03 Thread Avi shah
Hi ,
Check this out

https://www.youtube.com/watch?v=cBOyVNR2Seg

On Thu, Dec 3, 2020 at 6:48 PM Eugene TUYIZERE 
wrote:

> Dear Team,
>
> In my project, I have the date format MM. How to validate that the MM
> part cannot exceed 12? I think this can be done in javascript but don't
> know how. Assist please.
>
> Thank you
>
> --
> *TUYIZERE Eugene*
>
>
>
> *Msc Degree in Mathematical Science*
>
> *African Institute for Mathematical Sciences (AIMS Cameroon)Crystal
> Garden-Lime, Cameroon*
>
> Bsc in Computer Science
>
> *UR-Nyagatare Campus*
>
> Email: eugene.tuyiz...@aims-cameroon.org
>eugenetuyiz...@gmail.com
>
> Tel: (+250) 7 88 26 33 38, (+250) 7 22 26 33 38
>
> --
> 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/CABxpZHvi_hCZ87ezdTvbZpdo3YJSo1qvLs7Hdq4pGP9H46AYcQ%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/CALa7AFPhYzGQBeGFP3fnpEoy6tAwpFndvebgE_1PSa2g5kNWkg%40mail.gmail.com.


Date validation in javascript

2020-12-03 Thread Eugene TUYIZERE
Dear Team,

In my project, I have the date format MM. How to validate that the MM
part cannot exceed 12? I think this can be done in javascript but don't
know how. Assist please.

Thank you

-- 
*TUYIZERE Eugene*



*Msc Degree in Mathematical Science*

*African Institute for Mathematical Sciences (AIMS Cameroon)Crystal
Garden-Lime, Cameroon*

Bsc in Computer Science

*UR-Nyagatare Campus*

Email: eugene.tuyiz...@aims-cameroon.org
   eugenetuyiz...@gmail.com

Tel: (+250) 7 88 26 33 38, (+250) 7 22 26 33 38

-- 
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/CABxpZHvi_hCZ87ezdTvbZpdo3YJSo1qvLs7Hdq4pGP9H46AYcQ%40mail.gmail.com.


Re: Deploy a finished django application

2020-12-03 Thread Carles Pina i Estany


Hi Eugene,

On Dec/03/2020, Eugene TUYIZERE wrote:

> I hope you are doing well. I have a question that I need guidance from
> you: I have a web application that is currently done and ready to be
> used. I want to deploy (make it productive) on the company server.
> This company has very strong security on their private network. My
> question is: How to deploy this web application on the company server
> so that they start to use it?

If I was you I would ask the system administrators about how to deploy
the application. They will be able to explain how they operate and the
steps to deploy it. If the application needs to be packaged in Docker,
virtual machine templates, create you a database user so the application
can connect to it, etc.

-- 
Carles Pina i Estany
https://carles.pina.cat

-- 
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/20201203121932.GA6262%40pina.cat.


Re: Deploy a finished django application

2020-12-03 Thread Raghavendra AK
hi,

i think this can help you..
https://www.youtube.com/watch?v=nh1ynJGJuT8




*Best regards,Raghavendra AKCell: +91 7676 363642*


On Thu, Dec 3, 2020 at 3:15 PM Eugene TUYIZERE 
wrote:

> Dear Kasper,
>
> Thank you very much for your reply. Actually I did not deploy anyweb app.
> The strong security is because the company I want to deploy to is a
> financial institution that requires more security settings. Maybe this is
> not a problem. The server OS is Windows Server 2016. I do not have any idea
> how I can make that web app run on it and users access it from it.
>
> Thank you
>
>
> 
>  Virus-free.
> www.avast.com
> 
> <#m_4572699332609744004_DAB4FAD8-2DD7-40BB-A1B8-4E2AA1F9FDF2>
>
> On Thu, 3 Dec 2020 at 11:09, Kasper Laudrup  wrote:
>
>> Hi Eugene,
>>
>> On 03/12/2020 09.28, Eugene TUYIZERE wrote:
>> > I have a web application that is currently done and ready to be used. I
>> > want to deploy (make it productive) on the company server. This company
>> > has very strong security on their private network. My question is: How
>> > to deploy this web application on the company server so that they start
>> > to use it?
>>
>> That is very hard to answer without knowing anything about your company
>> server or what you mean by "very strong security".
>>
>> What is the setup of the server (OS, web server etc.) you want to deploy
>> to and how would the "very strong security" make deployment problematic?
>>
>> 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, 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/66f3f765-56fb-b74d-8dfe-1964384b6f2d%40stacktrace.dk
>> .
>>
>
>
> --
> *TUYIZERE Eugene*
>
>
>
> *Msc Degree in Mathematical Science*
>
> *African Institute for Mathematical Sciences (AIMS Cameroon)Crystal
> Garden-Lime, Cameroon*
>
> Bsc in Computer Science
>
> *UR-Nyagatare Campus*
>
> Email: eugene.tuyiz...@aims-cameroon.org
>eugenetuyiz...@gmail.com
>
> Tel: (+250) 7 88 26 33 38, (+250) 7 22 26 33 38
>
> --
> 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/CABxpZHst_wQuCoXc5S6Z2cw4gsbKaykUWWoXfm9C%2B3eYNeobdg%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/CANiNm7feX2OfyH4C10ce4acR855CCPdk19LgYRRHNaLPJr4e5Q%40mail.gmail.com.


Re: Deploy a finished django application

2020-12-03 Thread Eugene TUYIZERE
Dear Kasper,

Thank you very much for your reply. Actually I did not deploy anyweb app.
The strong security is because the company I want to deploy to is a
financial institution that requires more security settings. Maybe this is
not a problem. The server OS is Windows Server 2016. I do not have any idea
how I can make that web app run on it and users access it from it.

Thank you


Virus-free.
www.avast.com

<#DAB4FAD8-2DD7-40BB-A1B8-4E2AA1F9FDF2>

On Thu, 3 Dec 2020 at 11:09, Kasper Laudrup  wrote:

> Hi Eugene,
>
> On 03/12/2020 09.28, Eugene TUYIZERE wrote:
> > I have a web application that is currently done and ready to be used. I
> > want to deploy (make it productive) on the company server. This company
> > has very strong security on their private network. My question is: How
> > to deploy this web application on the company server so that they start
> > to use it?
>
> That is very hard to answer without knowing anything about your company
> server or what you mean by "very strong security".
>
> What is the setup of the server (OS, web server etc.) you want to deploy
> to and how would the "very strong security" make deployment problematic?
>
> 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, 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/66f3f765-56fb-b74d-8dfe-1964384b6f2d%40stacktrace.dk
> .
>


-- 
*TUYIZERE Eugene*



*Msc Degree in Mathematical Science*

*African Institute for Mathematical Sciences (AIMS Cameroon)Crystal
Garden-Lime, Cameroon*

Bsc in Computer Science

*UR-Nyagatare Campus*

Email: eugene.tuyiz...@aims-cameroon.org
   eugenetuyiz...@gmail.com

Tel: (+250) 7 88 26 33 38, (+250) 7 22 26 33 38

-- 
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/CABxpZHst_wQuCoXc5S6Z2cw4gsbKaykUWWoXfm9C%2B3eYNeobdg%40mail.gmail.com.


Re: Deploy a finished django application

2020-12-03 Thread Kasper Laudrup

Hi Eugene,

On 03/12/2020 09.28, Eugene TUYIZERE wrote:
I have a web application that is currently done and ready to be used. I 
want to deploy (make it productive) on the company server. This company 
has very strong security on their private network. My question is: How 
to deploy this web application on the company server so that they start 
to use it?


That is very hard to answer without knowing anything about your company 
server or what you mean by "very strong security".


What is the setup of the server (OS, web server etc.) you want to deploy 
to and how would the "very strong security" make deployment problematic?


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, 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/66f3f765-56fb-b74d-8dfe-1964384b6f2d%40stacktrace.dk.


Re: Is it possible to use REST API on Django template ?

2020-12-03 Thread Suhaib Ali
you can use jquery to fetch api calls

On Wed, Nov 25, 2020 at 7:49 PM Aman Modi  wrote:

>
>
> Hello Django lovers.
>
> I want to use REST API  on Django template but i have no idea how can i do
> that.
> I want to use same API on android app and Django template.
>
> Any suggestion .
>
> Thanks and regard
> Aman Modi
>
> --
> 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/99c6d921-9ea7-4f3b-9d69-03b06fbbd5d8n%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/CAD%2BVV6LED5wS5sAxE-wy6BjyXEzjdVs4wMSd5zQoSgcJ3Vv8uQ%40mail.gmail.com.


Deploy a finished django application

2020-12-03 Thread Eugene TUYIZERE
Dear Team,

I hope you are doing well. I have a question that I need guidance from you:
I have a web application that is currently done and ready to be used. I
want to deploy (make it productive) on the company server. This company has
very strong security on their private network. My question is: How to
deploy this web application on the company server so that they start to use
it?

Please help to guide how to achieve this.

Thank you



-- 
*TUYIZERE Eugene*



*Msc Degree in Mathematical Science*

*African Institute for Mathematical Sciences (AIMS Cameroon)Crystal
Garden-Lime, Cameroon*

Bsc in Computer Science

*UR-Nyagatare Campus*

Email: eugene.tuyiz...@aims-cameroon.org
   eugenetuyiz...@gmail.com

Tel: (+250) 7 88 26 33 38, (+250) 7 22 26 33 38


Virus-free.
www.avast.com

<#DAB4FAD8-2DD7-40BB-A1B8-4E2AA1F9FDF2>

-- 
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/CABxpZHu%2B-SLD%2BQAj03A8aGcf3r11yyFZK62esiP3-6u%2BhtZBtg%40mail.gmail.com.