Anonymous
https://github.com/django-oscar/django-oscar
thanks have a problem.how to download and run it in pycharm pro
Anonymous
just by clone ,or shall i need to create venv
Alex
just by clone ,or shall i need to create venv
I think you have to learn python it self, before starting any serious projects.
Alex
And oscar has full documentation on how to install and use it.
Ghorz
Hey. Some questions. Is wsgi.py used at all in development?
That's what makes manage.py runserver work
Ghorz
Kartik
Hey, I am not doing any post request on my eb instance but the number of post request on billing page still increases. Why is this happening ?
Kartik
It has done 1000 post requests from yesterday somehow.
Dambe
Hey guys, please check my first blog post and help me improve myself. https://medium.com/@syk1k/geodjango-without-geographic-database-28945f34a968?source=friends_link&sk=10d3e0e9f06d3131bc8773b1bd49c05e
Dambe
Thanks
Dambe
You can use it in any template form like you use all django forms fields. Just create a model form and the field with the map will be displayed.
Dambe
I think I will write a post for it very soon
Dambe
Here is the package's source code. Am still working on how to integrate PolygonField https://github.com/syk1k/django-geolocation-fields
Dambe
Not yet. But I will do it later, thank you, I really appreciate your feedback
Dambe
Check the source too and tell me what you think. You can even contribute if you want.
Dambe
Ok
cj
show the source code
cj
🤷🏻‍♂️
Ghorz
🤦‍♂
~~~
Is there any link to practice django?? And interview tips🤷‍♂
Alex
Is there any link to practice django?? And interview tips🤷‍♂
Let's start from what you HAVE already learned?
~~~
Let's start from what you HAVE already learned?
I learned the basics and trying to build a blog..with the help of djangogirl tutorial..but i heard of CMS and REST...but never learned it or find any source...if you guys have any tuts related to it ..pls share
Andrew
I learned the basics and trying to build a blog..with the help of djangogirl tutorial..but i heard of CMS and REST...but never learned it or find any source...if you guys have any tuts related to it ..pls share
You dont need rest ans cms for a beginning. If you prefer video over text, then you should try CoreySchafer, JustDjango, and CodingForEnterpreneurs
Dhruva
I want to create a stepwise form having more than 6 pages of form any tutorial or links anyone can help me with it
Anonymous
Hey guys
Anonymous
how's everyone there?
Anonymous
I'm new here in the group, is there anything I should know?
R
I'm new here in the group, is there anything I should know?
Yes, you should probably know that this isn’t a social chat. It’s entirely directed at helping specific issues with django.
Doragonsureiyā
I'm new here in the group, is there anything I should know?
Read the rules before any activity: @PythonRules
Anonymous
Yes, you should probably know that this isn’t a social chat. It’s entirely directed at helping specific issues with django.
I am learning Python and Django, I attended to a Djangogirl workshop here in my city as Coacher, but I still need to improve my skills
Daniel
Hello everybody, Somebody know how to work with inlineformset?? I am getting and error and I can't find out
PV
I need to redirect to another page after a form submission (via ajax and sweat alert), how can i do that
Carlos
I want to create a stepwise form having more than 6 pages of form any tutorial or links anyone can help me with it
I've done that using the library Django form-tools, but I am by no means an expert in Django. Maybe there are better ways
Stv
Hello guys..anyone with the e-book or pdf of 'Django for beginners by William Vincent', kindly share.
Luis
I'm new here in the group, is there anything I should know?
Welcome!! Sure, please take a minute and read about our rules in the pinned message.
Dhruva
Is form wizard supported in latest version
Carlos
https://django-formtools.readthedocs.io/en/latest/
Anonymous
Hi guys I have been trying to develop blog website just to learn Django But I could not implement reply comment functionality Is there anyone who did, if yes please help me) Thanks in advance
Dhruva
I have made a form using form wizard now I want 1 attribute as the ques. like What is your name? But in forms.py it won't allow me for capital W how to do? please help
SS
How can I learn Django from beginning to advance?
SS
@pythonres
Is this comprehensive?
SS
pretty much
Okay sir
Marchellos
so i have two model, 1to1 relationship im using drf so i want to build a serializer for one of them that will have 3 fields from the other one
Marchellos
any thoughts?
Marchellos
nothing from related fields feels suited for this
Marchellos
i thought about computed field, but it also feels off
Piyush
Hey folks how to get next post and previous post in django blog
Alex
i thought about computed field, but it also feels off
Please, read drf's docs more carefully. You can nest serializers. https://www.django-rest-framework.org/api-guide/serializers/#dealing-with-nested-objects
Marchellos
like i need a flat structure
Marchellos
also read-only so that should make things easier
Piyush
I want to get next post and previous post (title and url) for my django blog project
Piyush
Ni
Piyush
No
Gourav
Hii Is there anyone create microservices using djano
Doragonsureiyā
Hii Is there anyone create microservices using djano
Please don't ask meta questions like: "Any user of $x here?" "Anyone used technology $y?" "Hello I need help on $z" Just ask about your problem directly! With 52k+ people the probability that someone will help is pretty high. Also please read: http://catb.org/~esr/faqs/smart-questions.html
Piyush
I want to set on model { If next object is available then get their object slug } And { If previous object is available then get their object slug }
Bradypodion
Hii Is there anyone create microservices using djano
Hi, anyone ever used a fork to eat?
Gourav
Like break a e-commerce app in microservice Architecture
Gourav
https://images.app.goo.gl/jvKVAmLk4ByxFH387
Gourav
https://images.app.goo.gl/jvKVAmLk4ByxFH387
According to this architecture every service has its own database
Gourav
So how can I structure Django project and it's model to handle
Shaked
Does someone know how can i implement digital signature like docusign has i have a static document which i want to send to a client phone and let just him have the option to sign it and the get the document once it signed. I have a django app which I want to implement this
Alex
So how can I structure Django project and it's model to handle
Why do you need such architecture at all? I'm currently working on a e-shop and it is a monolithic django project. Not much sense to split it. Yes, I use microservices, for example to connect it to dedicated telegram-bot. But actual code-base is pretty much small
Alex
I want to break because on the time of sale. I have to scale only my two service cart and order. Not my full Django project
So you need optimisation? Have you tried to mesure why it takes much time? Maybe there are tons of sql-queries with hundreds duplications?