Re: integrate vue js with django

2019-07-14 Thread vineet daniel
You might want to have a look at this tutorial series. https://scotch.io/bar-talk/build-an-app-with-vuejs-and-django-part-one Regards Vineet Daniel Cell : +918527565696 Websites : Blog | Linkedin | Twitter <

integrate vue js with django

2019-07-14 Thread Pradeep Singh
can anyone tell me how to integrate vue js with django thanks in advance -- 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.c

Re: Template programming

2019-07-14 Thread Aldian Fazrihady
You need to create a template filter: https://docs.djangoproject.com/en/2.2/howto/custom-template-tags/ Or use existing template filter: https://docs.djangoproject.com/en/2.2/ref/templates/builtins/ Regards, Aldian Fazrihady http://aldianfazrihady.com On Mon, 15 Jul 2019, 00:49 Scyil sharma, w

Re: Template programming

2019-07-14 Thread Abishek Goda
space in URL translates to %20. Basically, you’ll need to encode the URL. Try this link for https://www.urlencoder.org quick encode/decode trials. I don’t understand the second part of replacing space character in HTML. Can you explain what you are trying to do? Abishek On 15 Jul 2019, 1:49 AM

Re: Docker: NGINX, Postgres, Django, Static, Media Files

2019-07-14 Thread Dan Tagg
+1 for cookiecutter On Sun, 14 Jul 2019 at 20:53, hunter.cur...@gmail.com < hunter.cur...@gmail.com> wrote: > Probably the easiest way to do what you are looking for is to use > cookiecutter-django: https://github.com/pydanny/cookiecutter-django > > They are now using Caddy for the web server but

Re: Docker: NGINX, Postgres, Django, Static, Media Files

2019-07-14 Thread hunter.cur...@gmail.com
Probably the easiest way to do what you are looking for is to use cookiecutter-django: https://github.com/pydanny/cookiecutter-django They are now using Caddy for the web server but if you look in earlier versions there are good examples of how to use Nginx if that is your preference. On Sunda

Template programming

2019-07-14 Thread Scyil sharma
I have space separated words in url. How to replace space by an character in html file. I know it is easy in view. Py but how to do in html -- 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: SESSION_EXPIRE_AT_BROWSER_CLOSE

2019-07-14 Thread M. Farhan Zia
Im facing the same problem, How did you solve this problem? On Sunday, January 22, 2017 at 1:21:04 PM UTC+5, ADEWALE ADISA wrote: > > Good day; > Please i need help on the issues am facing on > SESSION_EXPIRE_AT_BROWSER_CLOSE django settings.py. In my setting file i > have: > > SESSION_EXPIRE_A

Re: Using plus sign in email adresses for testing purposes

2019-07-14 Thread Benjamin Boy
As I said it's for testing purposes. You can have a mailbox t...@google.com, emails to tes...@google.com are also routed to the t...@google.com mailbox. -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop rec

Re: Using plus sign in email adresses for testing purposes

2019-07-14 Thread Charlotte Wood
why are you doing this? is the e-mail address really test+z or are you adding the plus sign for some specific reason? Charlotte Wood, MEd Educator (405) 578-5701 Zoom Meeting ID#: 4055785701 *Zoom URL:* https://epiccharterschools.zoom.us/j/2970513912 Classroom Google Site: https://sites.goo

Re: How to Use readymade theme in django?

2019-07-14 Thread Delcy John
Hi , Dwnload a template ,html page are placed in a template folder and other css,bootstrap,images etc.. are placed in a static folder.Then you must include static folder path in settings page.and url patterns are include urls.py,and finally in html front page load static files,where you specify cs

Re: Docker: NGINX, Postgres, Django, Static, Media Files

2019-07-14 Thread DANIEL URBANO DE LA RUA
Go check saleor Ci , saelor ecommerce is on github ,and you will have an idea they dont have a nginx containers but it can help you ;) On Sun, 14 Jul 2019, 14:49 Sebastian Jung Hello, > > i want i complete ready Docker Container for production that accept all > Host of wourld on port 80. I want a

Docker: NGINX, Postgres, Django, Static, Media Files

2019-07-14 Thread Sebastian Jung
Hello, i want i complete ready Docker Container for production that accept all Host of wourld on port 80. I want a docker container for Nginx another for Postgres another for Django and static Files and another container for Media Files. I have not enought experience to get a manual like this:

limit amount of authentication tokens

2019-07-14 Thread cyril moreau
Hi, I would like to know if there is a way to limit the amount of token that a user can create? I am using django-oauth2-toolkit to generate the token. The user can hit the auth url (http://localhost:8000/o/token/) as much as he wants and creates a new token everytime he goes to that url. Thi

How to Use readymade theme in django?

2019-07-14 Thread sahilshaikh8780
hello all, actually, I am new in Django and I am a student. i start 1 project but i exactly confused about how to use bootstrap or HTML theme in Django? if you know please let me know or if you have complete good step by step video or article then please give me thank you -- You received t

Using plus sign in email adresses for testing purposes

2019-07-14 Thread Benjamin Boy
Im currently developping a small app. For testing purposes i want to send emails to google with a plus sign in the email adress. The smtp backend sends the mail but i never leaves the server. What i tried: " from django.core.mail import EmailMessage email = EmailMessage('Subject', 'Body', to=['t.

How to use readymade theme in django

2019-07-14 Thread sahilshaikh8780
hello, i am new in Django development. and i don't know how to use ready made bootstarp or html theme in django? -- 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

Re: python manage.py runserver error

2019-07-14 Thread 'Amitesh Sahay' via Django users
Can you check if you have entered  'hello_world' in your app list in settings.py? Regards, Amitesh Sahay On Saturday, 13 July, 2019, 08:03:35 pm IST, Charlotte Wood wrote: Have you listed hello_world in your apps in settings.py? Is it something that you pip install? Is it the name o