Re: Create email template with the click of a button

2021-04-15 Thread Smiley
Hello,

I have another problem. 

I am trying to get CC to accept multiple email addresses but I do not seem 
to get it to work as it always says *Enter a valid email address*. I've 
searched for solutions, heard the new field *MultiValueField* but I also do 
not know how to use this in *forms.py*.



This is my *forms.py* code:

from django import forms
#  from django.forms.fields import MultiValueField
from django.forms.widgets import EmailInput, TextInput


class ComposeForm(forms.Form):
email_to = forms.EmailField(label="To", widget=EmailInput(attrs
={"size": 76}))
email_cc = forms.EmailField(
label="CC",
required=False,
widget=EmailInput(attrs={"size": 76, "multiple": True}),
)
email_subject = forms.CharField(
required=False, widget=TextInput(attrs
={"placeholder": "Subject", "size": 76})
)
email_message = forms.CharField(
required=True, label="", widget=forms.Textarea(attrs
={"rows": 19, "cols": 78})
)



And this is my *views.py* code:

from django.shortcuts import render

from .forms import ComposeForm


def email_template(request):
if request.method == "GET":
form = ComposeForm()
else:
form = ComposeForm(request.POST)
if form.is_valid():
print(form)
email_to = form.cleaned_data["email_to"]
email_cc = form.cleaned_data["email_cc"]
email_subject = form.cleaned_data["email_subject"]
email_message = form.cleaned_data["email_message"]

print("Emails:", email_cc)
else:
print("DEBUG:", form.errors)
return render(request, "email_template.html", {"form": form})



And this is my *email_template.html* HTML:







Home



{% csrf_token %}

{{ form.as_table }}









Please tell me whether it's possible to have multiple email addresses in 
*email_cc* aka *CC* field in Django or do I have to use frontend frameworks 
for this one job or start using one for better practice (get used to using 
frameworks to build frontend side)?

Please advise.

Regards,
Kristen

sebasti...@gmail.com kirjutas teisipäev, 23. märts 2021 kl 22:24:01 UTC+2:

> I have implement it as a bootstrap modal where a Form with fields are 
> shown. When User click submit the Page load New but If you don't want that 
> Page is load New you need a Ajax jquery submit to django
>
> Kristen  schrieb am Mo., 22. März 2021, 15:46:
>
>> Hello,
>>
>> Correct. I want to the user to click a button and have a form appear 
>> where the user can compose an email.
>>
>> Gmail uses javascript to render their form on top of the inbox because 
>>> they don't want you to have to leave the inbox page. You probably don't 
>>> have that requirement.
>>>
>>> Let me know if that works for you.
>>>
>>
>> I don't really want to redirect the user elsewhere. I would really like 
>> to do the Gmail way because I like it and thought maybe it's possible with 
>> Django.
>>
>> Nonetheless, I will try out your idea because my curiosity wants to know 
>> whether it's worth the effort to do it the Gmail way or go easier route way 
>> by doing it just as you explained.
>>
>> Let me know what you think of it, the Gmail way idea. 
>>
>> Kind regards
>>
>>> -- 
>>
> You received this message because you are subscribed to the Google Groups 
>> "Django users" group.
>> To unsubscribe 

Re: Try to make startapps but getting error

2021-04-15 Thread Binay kumar
thank you))

On Thursday, April 15, 2021 at 7:00:00 PM UTC+5:30 J.T. wrote:

> Name the app something other than hello_world. It appears as if there is a 
> conflict. 
>
> On Thu, Apr 15, 2021, 8:23 AM Binay kumar  wrote:
>
>> CommandError: 'hello_world' conflicts with the name of an existing Python 
>> module and cannot be used as an app name. Plea se try another name.
>>
>> please help me
>>
>> -- 
>> 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/f8845827-7988-4f8c-ad45-4f0c5f15229an%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/ce45d7c2-8258-4d0e-9851-b65aa5b16c2cn%40googlegroups.com.


'touch' is not recognized, help me please

2021-04-15 Thread Binay kumar
useig code.
from pathlib import Path

Path("C:/Python37/rp-portfolio/hello_world/templates/hello_world.html").touch()


from pathlib import Path

Path("C:/Python37/rp-portfolio/hello_world/templates/hello_world.html").touch()

-- 
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/d92b8ebc-c471-4eef-911e-a731e911004an%40googlegroups.com.


Re: Django Rest Framework & How to Learn it ?

2021-04-15 Thread GYANA RANJAN MOHANTY
Bro i am also facing same problem.

On Fri, 16 Apr 2021, 1:11 am Aniket Balkhande, <
aniketbalkhandeoffic...@gmail.com> wrote:

> Dear Venki,
> I have personally mailed you my contact details.
>
> Thanks & Regards,
> Aniket
>
> On Thu, Apr 15, 2021 at 8:41 PM venki malli 
> wrote:
>
>> I will  help you so give your contract  no
>>
>> On Mon, 12 Apr, 2021, 6:35 pm Aniket Balkhande, <
>> aniketbalkhandeoffic...@gmail.com> wrote:
>>
>>> Dear Community Members,
>>> I am Aniket, I have given 2 interviews this week, one for Django
>>> Developer and the other for React Developer with Django REST Framework.  In
>>> both interviews I was asked about DRF questions a lot apart from other
>>> stuff.
>>> So, my question is how to learn the django rest framework & from
>>> where can I start ?.
>>>
>>> Sorry it is not a technical question. But I thought It will be more
>>> beneficial for me rather than asking on all other platforms.
>>>
>>> I will appreciate your thoughts on this.
>>>
>>> kind regards,
>>> Aniket
>>>
>>> --
>>> 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/CANPrwf-90047itRfWmWQjKL--AWw1UJ4-Te0yVE6K7ffg%3D8BJA%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/CAM10R7g4qL_PzmF380LoOhpLdi%2BnPc8rkNUEDvG%3D6_9SWQbqQw%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/CANPrwf8O_RNFz9%3DDvCchJQwSZ3gds98mDh8OM5r5FydjGMtYeg%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/CAM6b-y6qNH%3D8%3DnEVynZfX%2BtfzppsA7Nd-O9izApaPw_RUXnj3g%40mail.gmail.com.


Re: Django Rest Framework & How to Learn it ?

2021-04-15 Thread Aniket Balkhande
Dear Venki,
I have personally mailed you my contact details.

Thanks & Regards,
Aniket

On Thu, Apr 15, 2021 at 8:41 PM venki malli  wrote:

> I will  help you so give your contract  no
>
> On Mon, 12 Apr, 2021, 6:35 pm Aniket Balkhande, <
> aniketbalkhandeoffic...@gmail.com> wrote:
>
>> Dear Community Members,
>> I am Aniket, I have given 2 interviews this week, one for Django
>> Developer and the other for React Developer with Django REST Framework.  In
>> both interviews I was asked about DRF questions a lot apart from other
>> stuff.
>> So, my question is how to learn the django rest framework & from
>> where can I start ?.
>>
>> Sorry it is not a technical question. But I thought It will be more
>> beneficial for me rather than asking on all other platforms.
>>
>> I will appreciate your thoughts on this.
>>
>> kind regards,
>> Aniket
>>
>> --
>> 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/CANPrwf-90047itRfWmWQjKL--AWw1UJ4-Te0yVE6K7ffg%3D8BJA%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/CAM10R7g4qL_PzmF380LoOhpLdi%2BnPc8rkNUEDvG%3D6_9SWQbqQw%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/CANPrwf8O_RNFz9%3DDvCchJQwSZ3gds98mDh8OM5r5FydjGMtYeg%40mail.gmail.com.


Re: getattr on related not possible?

2021-04-15 Thread Sebastian Jung
I have found the right solution. Thanks

sebasti...@gmail.com  schrieb am Do., 15. Apr.
2021, 18:07:

> Hello,
>
> i have following:
>
> models.py:
>
> from django.db import models
>
> class Tabs(models.Model):
> id = models.AutoField(primary_key=True)
> def __str__(self):
> return self.name
>
> class Box(models.Model):
> id = models.AutoField(primary_key=True)
> tabslink = models.ForeignKey(Tabs, on_delete=models.CASCADE,
> null=False,blank=False)
>
> def __init__(self, *args, **kwargs):
> super().__init__(*args, **kwargs)
> print([field.name for field in self._meta.get_fields()])
> for field in [field.name for field in self._meta.get_fields()]:
> getattr(self, field)
>
> views.py:
>
> from django.views.generic.edit import (
> CreateView,
>
> )
> from django.urls import reverse, reverse_lazy
> from django import forms
>
> class Boxform(forms.ModelForm):
> class Meta:
> model = Box
> fields = ['tabslink']
>
> class test(CreateView):
> model = Box
> template_name = 'test.html'
> form_class = Boxform
> success_url = reverse_lazy('Boxlistview')
>
> Now i get a Exception:
>
> Exception Value: Box has no tabslink.
>
> /home/sebastian/PycharmProjects/test3/test4/models.py, line 22, in __init__
> getattr(self, field) …
> ▶ Local vars
> /home/sebastian/.local/lib/python3.8/site-packages/django/db/models/fields/related_descriptors.py,
> line 197, in __get__
> raise self.RelatedObjectDoesNotExist( …
> ▶ Local vars
>
>
> This happens only on fields that have a  models.ForeignKey entry...
>
> Please help me that i can also get related with getattr.
>
> Regards
>
>
> --
> 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/b672baf2-4e87-49a2-ac17-ba6daff0cb9bn%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/CAKGT9myLx_wj399%2Bem1%2BgPFgKMW_eJJ60-84rmMyP_OyrugB3Q%40mail.gmail.com.


getattr on related not possible?

2021-04-15 Thread sebasti...@gmail.com
Hello,

i have following:

models.py:

from django.db import models

class Tabs(models.Model):
id = models.AutoField(primary_key=True)
def __str__(self):
return self.name

class Box(models.Model):
id = models.AutoField(primary_key=True)
tabslink = models.ForeignKey(Tabs, on_delete=models.CASCADE, 
null=False,blank=False)

def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
print([field.name for field in self._meta.get_fields()])
for field in [field.name for field in self._meta.get_fields()]:
getattr(self, field)

views.py:

from django.views.generic.edit import (
CreateView,

)
from django.urls import reverse, reverse_lazy
from django import forms

class Boxform(forms.ModelForm):
class Meta:
model = Box
fields = ['tabslink']

class test(CreateView):
model = Box
template_name = 'test.html'
form_class = Boxform
success_url = reverse_lazy('Boxlistview')

Now i get a Exception:

Exception Value: Box has no tabslink.

/home/sebastian/PycharmProjects/test3/test4/models.py, line 22, in __init__
getattr(self, field) …
▶ Local vars
/home/sebastian/.local/lib/python3.8/site-packages/django/db/models/fields/related_descriptors.py,
 
line 197, in __get__
raise self.RelatedObjectDoesNotExist( …
▶ Local vars


This happens only on fields that have a  models.ForeignKey entry...

Please help me that i can also get related with getattr.

Regards


-- 
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/b672baf2-4e87-49a2-ac17-ba6daff0cb9bn%40googlegroups.com.


Re: View photos and videos in the Django app

2021-04-15 Thread Kasper Laudrup
On 15/04/2021 17.29, מוריה יצחקי wrote:
> You know how to explain to me what the way is?
>

Yes.

Think about what you might consider normal. Then try to reverse it and
think of the complete opposite and do that.

If that still doesn't work, try something completely bizarre instead.

An alternative approach might be to try and ask a question here that
someone has a chance of answering if you want some more serious answers.

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/f09aba4d-ad54-5316-cfbe-97ece912b04e%40stacktrace.dk.


OpenPGP_signature
Description: OpenPGP digital signature


Re: View photos and videos in the Django app

2021-04-15 Thread מוריה יצחקי
You know how to explain to me what the way is?


‫בתאריך יום ה׳, 15 באפר׳ 2021 ב-18:22 מאת ‪Kasper Laudrup‬‏ <‪
laud...@stacktrace.dk‬‏>:‬

> On 15/04/2021 12.48, מוריה יצחקי wrote:
> > Hi
> >  I want to view photos and videos in Djangp app
> > When I open a video tag in HTML normally it does not load
> > I would love to help thank you very much
> >
>
> If it doesn't work when you do it normally, consider doing it
> abnormally. Then it might work.
>
> 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/b292afc6-073c-3cf6-38e7-9aed739d797c%40stacktrace.dk
> .
>

-- 
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%2B277burwCr6N0jqNShQDuxMEE65s3gE%2B8U3Xm3te-pdrDNN-A%40mail.gmail.com.


Re: View photos and videos in the Django app

2021-04-15 Thread Kasper Laudrup
On 15/04/2021 12.48, מוריה יצחקי wrote:
> Hi
>  I want to view photos and videos in Djangp app
> When I open a video tag in HTML normally it does not load
> I would love to help thank you very much
>

If it doesn't work when you do it normally, consider doing it
abnormally. Then it might work.

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/b292afc6-073c-3cf6-38e7-9aed739d797c%40stacktrace.dk.


OpenPGP_signature
Description: OpenPGP digital signature


Re: Django Rest Framework & How to Learn it ?

2021-04-15 Thread venki malli
I will  help you so give your contract  no

On Mon, 12 Apr, 2021, 6:35 pm Aniket Balkhande, <
aniketbalkhandeoffic...@gmail.com> wrote:

> Dear Community Members,
> I am Aniket, I have given 2 interviews this week, one for Django
> Developer and the other for React Developer with Django REST Framework.  In
> both interviews I was asked about DRF questions a lot apart from other
> stuff.
> So, my question is how to learn the django rest framework & from
> where can I start ?.
>
> Sorry it is not a technical question. But I thought It will be more
> beneficial for me rather than asking on all other platforms.
>
> I will appreciate your thoughts on this.
>
> kind regards,
> Aniket
>
> --
> 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/CANPrwf-90047itRfWmWQjKL--AWw1UJ4-Te0yVE6K7ffg%3D8BJA%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/CAM10R7g4qL_PzmF380LoOhpLdi%2BnPc8rkNUEDvG%3D6_9SWQbqQw%40mail.gmail.com.


Re: Try to make startapps but getting error

2021-04-15 Thread Jason Turner
Name the app something other than hello_world. It appears as if there is a
conflict.

On Thu, Apr 15, 2021, 8:23 AM Binay kumar  wrote:

> CommandError: 'hello_world' conflicts with the name of an existing Python
> module and cannot be used as an app name. Plea se try another name.
>
> please help me
>
> --
> 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/f8845827-7988-4f8c-ad45-4f0c5f15229an%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/CADoyC15_EP4sbWQkTB1%3D%2BfEOiPLLjyQTtmgB%2BpXiywPbhzmsrg%40mail.gmail.com.


Try to make startapps but getting error

2021-04-15 Thread Binay kumar
CommandError: 'hello_world' conflicts with the name of an existing Python 
module and cannot be used as an app name. Plea se try another name.

please help me

-- 
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/f8845827-7988-4f8c-ad45-4f0c5f15229an%40googlegroups.com.


Image Outside Intro

2021-04-15 Thread Jay Grace
We're trying to place and image outside of the intro on the bottom left of 
the screen over the parallax image.  We could make a flowing image that 
stays on the bottom left but we would prefer a one time image on the first 
page/image only.

Any assistance would be greatly 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/ae68c739-0a30-491f-a688-1e06ed26ecb1n%40googlegroups.com.


Re: View photos and videos in the Django app

2021-04-15 Thread מוריה יצחקי
?

ב-יום חמישי, 15 באפריל 2021 בשעה 13:48:12 UTC+3, מוריה יצחקי כתב/ה:

> Hi
>  I want to view photos and videos in Djangp app
> When I open a video tag in HTML normally it does not load
> I would love to help thank you very much
>

-- 
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/077e23f9-9d10-4aad-bf50-532213f8b28bn%40googlegroups.com.


Re: View photos and videos in the Django app

2021-04-15 Thread מוריה יצחקי
?

‫בתאריך יום ה׳, 15 באפר׳ 2021 ב-13:48 מאת מוריה יצחקי <‪moriyal...@gmail.com
‬‏>:‬

> Hi
>  I want to view photos and videos in Djangp app
> When I open a video tag in HTML normally it does not load
> I would love to help thank you very much
>
> --
> 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/e87d4007-cbce-4113-a4a9-9c346af0832fn%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/CA%2B277bvNBqUzrgqwyYCyJNGcikZHVcrj%3DCQ7MYFK6TMKbUMPEQ%40mail.gmail.com.


View photos and videos in the Django app

2021-04-15 Thread מוריה יצחקי
Hi
 I want to view photos and videos in Djangp app
When I open a video tag in HTML normally it does not load
I would love to help thank you very much

-- 
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/e87d4007-cbce-4113-a4a9-9c346af0832fn%40googlegroups.com.


Re: Ideas for Django Bootcamp

2021-04-15 Thread the.one.abo...@gmail.com
Hi, 

I forgot to mention in my previous email this Bootcamp will not last more 
than a week. So. it will be mostly introductory.

Best wishes. 
Gagan Deep

On Thursday, April 15, 2021 at 12:34:08 PM UTC+5:30 
the.one.abo...@gmail.com wrote:

> Hey everyone, 
>
> I am planning to organize a Django Bootcamp for beginners. As usual, I 
> want to make attendees approach Django through means of a project, but I 
> really don't want to do something like a blogs or note website.
>
> If you were to start learning Django today, what website would you like to 
> begin with? Also, if you are someone who teaches Django, I will be grateful 
> if you can give me some insights. 
>
> Best wishes, 
> Gagan Deep  
>

-- 
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/572fedd6-bba6-4d23-8d56-60c22ddf1cb8n%40googlegroups.com.


Ideas for Django Bootcamp

2021-04-15 Thread the.one.abo...@gmail.com
Hey everyone, 

I am planning to organize a Django Bootcamp for beginners. As usual, I want 
to make attendees approach Django through means of a project, but I really 
don't want to do something like a blogs or note website.

If you were to start learning Django today, what website would you like to 
begin with? Also, if you are someone who teaches Django, I will be grateful 
if you can give me some insights. 

Best wishes, 
Gagan Deep  

-- 
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/a13f4f6f-5c1d-4ac4-aeaf-ec4d71b9ae32n%40googlegroups.com.