Is Microsoft Visual Studion 2017 Environment is good for Django development ?

2019-01-19 Thread Django Geek Aditya
I am a beginner in Django. Is Microsoft Visual Studio will be a better environment to start with django from basics. They are providing a detailed help on their website LINK

submit button redirecting to unknown url

2019-01-19 Thread tribhuvan kishor
VIEW def post_share(request, post_id): # Retrieve post by id post = get_object_or_404(Post, id=post_id, status='published') sent = False if request.method == 'POST': # Form was submitted form = EmailPostForm(request.POST) if form.is_valid(): #

Re: Project initialization

2019-01-19 Thread tribhuvan kishor
first, check your Django properly installed or not. and tell me which operating system you are using. On Sun, Jan 20, 2019 at 4:36 AM Lara Garg wrote: > Why write django-admin startproject xyz and not just django startproject > xyz? > Thanks in advance > > -- > You received this message because

Re: AES Encryption

2019-01-19 Thread Alex Heyden
PyCrypto would be the Python-side library if you wanted to handle this in application code, but personally, I'd prefer to handle it in my database of choice. A lot of us use Postgres, and there's a django-pgcrypto library for that. That being said, reversible ciphers are hard to do meaningfully.

AES Encryption

2019-01-19 Thread cpyle
Is there a blog or website dedicated to helping Django developers handle PII? I'd like to use AES 256 encryption to store all of our fields but have no guidance on the best practices for implementing security measures. -- You received this message because you are subscribed to the Google

Re:

2019-01-19 Thread Alex Heyden
You missed the +unsubscribe in the email name to accomplish that. From the footer: You received this message because you are subscribed to the Google Groups > "Django users" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to

[no subject]

2019-01-19 Thread Vikash Verma
Please remove me Get Outlook for iOS -- 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 post

Project initialization

2019-01-19 Thread Lara Garg
Why write django-admin startproject xyz and not just django startproject xyz? 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

Adding default rows to Django admin inlines

2019-01-19 Thread Mohammad Etemaddar
If I get you right you need to add m2m objects with a default value. In this situation, you can create an intermediate model to build m2m. For example: JobActionRel: job = fk action = fk-to-actions (default=Action.objects.get...) And use it as through model:

Re: Django to APK

2019-01-19 Thread Jani Tiainen
Hi. Theoretically speaking that could be possible. Android can run Python and since Django is plain Python it could run but what would be the usecase? Django pretty much lives with HTTP request-response cycle so running a server software on mobile doesn't sound sensible. On Sat, Jan 19, 2019 at

Re: Django to APK

2019-01-19 Thread Nebojsa Hajdukovic
no, you need to create rest api, then to use api in some language/framework/library that support android development (such as flutter, ionic etc) суб, 19. јан 2019. у 14:52 Jean Kyle је написао/ла: > Is there a way of converting a Django website into an APK that can be > installed on an Android

Django to APK

2019-01-19 Thread Jean Kyle
Is there a way of converting a Django website into an APK that can be installed on an Android phone? -- 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

[ANN] django-service-urls 1.1.0

2019-01-19 Thread Raffaele Salmaso
I'm happy to announce the 1.1.0 release of django-service-urls package, an evolution of dj-database-url which can handle CACHES and EMAIL_BACKEND setting other than DATABASES. *News* Simplified installation: instead of modifying the setting file (possibility that is always available) just add