Re: Regarding internship opportunity in Bangalore

2019-03-28 Thread Akash Purandare
Hey Sachin If you might be interested in Full Stack Development of a Website, please do send me your CV. We work in a startup called Oversight. Regards Akash Purandare akash.p1...@gmail.com On Thursday, March 28, 2019 at 11:24:18 PM UTC+5:30, sachin thakur wrote: > > Hi Folks > T

Looking for a Django Intern in India

2019-03-28 Thread Akash Purandare
Proficiency in Git and Heroku Interested developers can send their CV to the E-mail Akash Purandare . Vacancies: 2 Regards Akash Purandare Oversight akash.p1...@gmail.com -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from

Re: Image Upload in admin panel

2019-02-14 Thread Akash Purandare
see the model in your admin panel and thus upload the image there. To show an image in the HTML page, you will need to create a view function and pass a context with {item: } and then write in your template code `` Regards Akash Purandare On Friday, February 15, 2019 at 12:07:04 AM UTC+5:30

Re: file URL missing project name

2018-11-20 Thread Akash Purandare
working. If not, can you send me the URL and the uploaded path of the Admin panel uploaded file? Regards Akash Purandare On Sunday, November 18, 2018 at 8:48:04 PM UTC+5:30, Jeff Williams wrote: > > Hi All, > I'm new to django, so sorry if this is a newbie issue. > > I'

Re: file URL missing project name

2018-11-19 Thread Akash Purandare
Hey Jeff Can you send me the URL of the file and the Location of the uploaded media file? Regards Akash Purandare On Sunday, November 18, 2018 at 8:48:04 PM UTC+5:30, Jeff Williams wrote: > > Hi All, > I'm new to django, so sorry if this is a newbie issue. > > I

Re: file URL missing project name

2018-11-18 Thread Akash Purandare
4633-8BF6-C5C9A82D87EE.JPG. So if you change the upload_to to '', the URL will be http://localhost:8000/oldgrub/media/56288852088__208FCEF9-5890- 4633-8BF6-C5C9A82D87EE.JPG. Hope this fixes the issue that you are facing. Regards Akash Purandare On Sunday, November 18, 2018 at 10:57:31 PM UTC

Re: file URL missing project name

2018-11-18 Thread Akash Purandare
Hey Jeff I think that you might need to upload the file again and try. Let me know if it works out. Regards Akash Purandare On Sunday, November 18, 2018 at 9:56:13 PM UTC+5:30, Jeff Williams wrote: > > OK this is almost fixed: > > Why isn't this path matching? > &

Re: Exception Value: fe_sendauth: no password supplied

2018-11-18 Thread Akash Purandare
Hi Akash Can you specify as to what error you are facing? Also, I believe that the ENGINE that you are using must be 'django.db.backends.postgresql' as given in the official docs of Django: https://docs.djangoproject.com/en/2.1/ref/settings/#std:setting-DATABASE-ENGINE Reg

Re: file URL missing project name

2018-11-18 Thread Akash Purandare
t settings from django.conf.urls.static import static urlpatterns = [ ...(Your Urls) ]+static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT) Regards Akash Purandare On Sunday, November 18, 2018 at 8:48:04 PM UTC+5:30, Jeff Williams wrote: > > Hi All, > I'm new to django, so so

I can't start django

2018-11-16 Thread Akash Purandare
Can you show the output of pip freeze in your virtual environment? -- 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

Re: Library not loaded: libssl.1.0.0.dylib New Mac on Mohave

2018-11-11 Thread Akash Purandare
Hey Andrew Can you show the output of pip freeze? On Saturday, November 10, 2018 at 4:38:59 PM UTC+5:30, Andrew Troiano wrote: > > Hey, > > I am trying to get my app running on a new Mac. It's on Mohave, python > 2.7, here is the stack trace. https://dpaste.de/m9WO . We are getting > Library

Re: Need help with CDN on Django App using heroku

2018-10-22 Thread Akash Purandare
Thank you for the fast reply. However the issue is not with Whitenoise. Whitenoise can be used to serve static files, yes. But how do I use it to serve media assets in the project? On Monday, October 22, 2018 at 9:11:02 PM UTC+5:30, Andrew Pinkham wrote: > > https://devcenter.heroku.com/articles

Need help with CDN on Django App using heroku

2018-10-22 Thread Akash Purandare
I am trying to serve both static and media files on Heroku by using an S3 bucket, but I do not know how to properly configure the settings.py for the same. Does anyone know how to do it? If you do, please direct me to the correct set of information. -- You received this message because you are

Re: Cannot deploy Django project on Heroku from a Ubuntu 18.04 laptop

2018-10-22 Thread Akash Purandare
You can use Pipenv to specify the version of python to Heroku. Personally, I have used upto Python 3.7 to deploy my Django projects, seems to work best with Pipenv On Monday, October 22, 2018 at 5:52:05 PM UTC+5:30, Mo-rema07 wrote: > > Hello people, > > Can I please get help? I am a noob using

Urls in Django model for dynamic template loading

2018-10-19 Thread Akash Purandare
I am creating a website in django and I was wondering how I can add a url to Django Model and then retrieve that url to provide to the {% url 'url_in_db'%} in the templates. If not, can anyone give me any other suggestions to achieve this? -- You received this message because you are subscribe