Re: Token Generation Errors on Login

2025-02-18 Thread RANGA BHARATH JINKA
Hi, You have to provide a bearer token in the headers. Test in postman with the bearer token. If you don't provide the token you will get this error. All the best On Tue, 18 Feb, 2025, 9:25 pm Ephraim Iannah, wrote: > Did you make additional changes in the settings.py file? > > On Thu, Feb 13,

Re: Problem with displaying media files

2025-01-08 Thread RANGA BHARATH JINKA
Hi, The issue is with how you're passing the mymiody data to the template. In your view, you are using: mymiody = Miody.objects.all().values() The .values() method returns dictionaries instead of model instances, which means you lose the ability to call .url on the ImageField. Solution: Change

Re: Meta indexes and makemigrations

2024-12-05 Thread RANGA BHARATH JINKA
 PM UTC+1 RANGA BHARATH JINKA > wrote: > >> Hi, >> >> The issue is that partial indexes with conditions (condition attribute >> in models.Index) were introduced in *Django 3.2*, but they rely on the >> database backend's ability to support them. PostgreSQL does

Re: Meta indexes and makemigrations

2024-12-05 Thread RANGA BHARATH JINKA
Hi, The issue is that partial indexes with conditions (condition attribute in models.Index) were introduced in *Django 3.2*, but they rely on the database backend's ability to support them. PostgreSQL does support partial indexes, so that part should be fine. However, your problem likely stems fro

Re: Help serving media files on render

2024-11-01 Thread RANGA BHARATH JINKA
Hi, You can use cloudinary or Firestore storage bucket to store media files. Thanks On Fri, 1 Nov, 2024, 6:11 pm ASAMOAH EMMANUEL, wrote: > Hi All, > I need help serving media files on render. I already serve static files > with whitenoise. > I am able to upload media files but cannot serve th

Re: testing signal with django allauth

2024-09-23 Thread RANGA BHARATH JINKA
in_valid.is_valid()) > AssertionError: False is not true > > -- > """ > On Monday 23 September 2024 at 12:36:37 UTC+1 RANGA BHARATH JINKA wrote: > >> what's the error you are getting in t

Re: testing signal with django allauth

2024-09-23 Thread RANGA BHARATH JINKA
imulate it, you can explicitly add the CSRF token from the response context to your form submission. On Mon, Sep 23, 2024 at 5:02 PM RANGA BHARATH JINKA < bharathjink...@gmail.com> wrote: > Hi, > > I think you have to pass csrf token while submitting the form in django. > Try passing

Re: testing signal with django allauth

2024-09-23 Thread RANGA BHARATH JINKA
Hi, I think you have to pass csrf token while submitting the form in django. Try passing csrf token. On Mon, Sep 23, 2024 at 4:34 PM Gabriel Soler wrote: > Sorry, I did not add the code before. This is how I have my tests set up > at the moment. I cannot pass the 'form is valid' step. > > from

Re: Deploy WebApp with django

2024-09-20 Thread RANGA BHARATH JINKA
Hi, Sorry. It's Google cloud run On Sat, 21 Sept, 2024, 10:18 am RANGA BHARATH JINKA, < bharathjink...@gmail.com> wrote: > Hi, > > You can host on good cloud run > > On Sat, 21 Sept, 2024, 12:07 am Gaetano Leoni, > wrote: > >> Hi I recently started develop

Re: Deploy WebApp with django

2024-09-20 Thread RANGA BHARATH JINKA
Hi, You can host on good cloud run On Sat, 21 Sept, 2024, 12:07 am Gaetano Leoni, wrote: > Hi I recently started developing in python with django. I created a fairly > full-bodied webapp and wanted to move it into production. I tried to > install it in a subdomain where there is no possibility

Re: Django server msg Error

2024-09-19 Thread RANGA BHARATH JINKA
gt; Thanks for reaching out. > > I have created the urls.py and views.py under pages folder and navigated > as book says. > > please find the attachments. > > On Thu, Sep 19, 2024 at 11:08 AM RANGA BHARATH JINKA < > bharathjink...@gmail.com> wrote: > >> Hi, >&g

Re: Django server msg Error

2024-09-19 Thread RANGA BHARATH JINKA
Hi, Did you create a view and link it to a URL like /home? Then, you have to go to that URL to see the message. Thanks, Bharath On Thu, Sep 19, 2024 at 8:31 PM Anudeep Gudimalla wrote: > Hi all > > Firstly, im learning Django by book "Django for beginners - WSVincent 5th > edition" in chapter-

Re: DLL load failed while importing _rust: The specified module could not be found.

2024-09-14 Thread RANGA BHARATH JINKA
ne that means there is no > cryptography version issue. It's a really weird thing. Please let me know > if you have any other solution. > > Thanks > Tarun > > > > > > > On Fri, 13 Sept 2024 at 12:54, RANGA BHARATH JINKA < > bharathjink...@gmail.com> w

Re: DLL load failed while importing _rust: The specified module could not be found.

2024-09-13 Thread RANGA BHARATH JINKA
The error you're encountering, *"DLL load failed while importing _rust: The specified module could not be found"*, typically indicates a compatibility issue between your Python environment and the cryptography library (or one of its dependencies) used by the Snowflake connector. Here's how you can

Re: E-comm live project

2024-03-26 Thread RANGA BHARATH JINKA
I am interested. Please add me as well to the whatsapp group - +919110334114 On Tue, Mar 26, 2024 at 3:36 PM Sujata Aghor wrote: > I am interested. > I have experience in Python Django for 10+ years > > On Mon, Mar 25, 2024 at 6:30 PM oduwole samuel > wrote: > >> I'm interested 07083861162 >> >

Re: table bank_app_bank has no column named DOB

2023-08-19 Thread RANGA BHARATH JINKA
Hi, Try changing DOB to small letters dob and run the migrations again. All the best 👍 Thanks and Regards J. Ranga Bharath Cell: 9110334114 On Sat, 19 Aug 2023, 9:18 pm ivan harold, wrote: > > https://stackoverflow.com/questions/68269165/why-django-is-not-detecting-my-table-column > > Try r

Re: Finding Help in getting started in Django

2023-05-31 Thread RANGA BHARATH JINKA
Hi, Go through this quick start tutorial and understand. You can do this. It is very easy. https://www.django-rest-framework.org/tutorial/quickstart/ Thanks and Regards J. Ranga Bharath Cell: 9110334114 On Wed, 31 May 2023, 2:16 pm DieHardMan 300, wrote: > I'd like to give some advice befor

Re: django internationalization

2022-11-29 Thread RANGA BHARATH JINKA
Hi, Please follow this https://stackoverflow.com/questions/2345708/how-can-i-get-the-full-absolute-url-with-domain-in-django Thanks and Regards J. Ranga Bharath Cell: 9110334114 On Tue, 29 Nov 2022, 11:53 am Dhrub Kumar Sharma, wrote: > I want the remaining slug part print dynamically rathe

Re: Random different values on each request

2022-11-19 Thread RANGA BHARATH JINKA
Hi, You can use random module in python to generate random numbers Thanks and Regards J. Ranga Bharath Cell: 9110334114 On Thu, 17 Nov 2022, 7:51 pm cs.s...@gmail.com, wrote: > Hello friends, > I am trying to get 2 random values on each response using > order_by('?')[:2], but getting the sam

Re: Sending Live Streaming Images from Client’s Webcam to Django Server

2022-10-13 Thread RANGA BHARATH JINKA
Hi, Please follow this. All the best https://www.geekfeed.co.jp/geekblog/sending-live-streaming-images-from-clients-webcam-to-django-server/ Thanks and Regards J. Ranga Bharath Cell: 9110334114 On Wed, 12 Oct 2022, 9:13 pm Anshuman Thakur, wrote: > Sir my question is: Sending Live Streaming

Re: Error django.db.utils.OperationalError: no such column:

2022-04-26 Thread RANGA BHARATH JINKA
Hi, Run python manage.py makemigrations python manage.py migrate Thanks and Regards J. Ranga Bharath Cell: 9110334114 On Tue, 26 Apr 2022, 1:07 pm Israel Lewis, wrote: > Hello guys, > > I'm having an error in my models when I add the FK to the faculty or the > student. > model.py > from dja

Re: Help : Embedding pdf in Django detailview

2022-03-17 Thread RANGA BHARATH JINKA
Hi, Please try this. https://stackoverflow.com/questions/11779246/how-to-show-a-pdf-file-in-a-django-view On Thu, Mar 17, 2022 at 12:12 PM Dexterr Jay wrote: > Hello guys, I'm developing a job board, and I want to display uploaded > files in job detailview without downloading the file. > When

Re: Django App

2022-02-07 Thread RANGA BHARATH JINKA
What is the error. Please share here On Tue, 8 Feb 2022, 12:13 am Abdulrahman Abbas, wrote: > Pls I'm trying to host a Django app on a free hosting sites basically > netlify and heroku but it keeps failing while building pls is there > anything I need to install or any other alternative > > -- >

Re: migrations: "no changes detected"

2022-02-07 Thread RANGA BHARATH JINKA
Hi, I think you forgot to add the app name in settings file. Please add the app names in installed apps. Then it will find out the models. All the best On Tue, 8 Feb 2022, 10:14 am 'Delvin Alexander' via Django users, < django-users@googlegroups.com> wrote: > I am trying to run migrations so t

Re: how to Display images other than from static folder.

2022-02-01 Thread RANGA BHARATH JINKA
Hi, Please follow this. https://djangocentral.com/managing-media-files-in-django/ You have to store your images in a static media folder by adding the media path in settings.py. This is the recommended way and easy to access the images All the best On Wed, Feb 2, 2022 at 11:30 AM RANGA BHARATH

Re: how to Display images other than from static folder.

2022-02-01 Thread RANGA BHARATH JINKA
Hi, Pass the pdf URL as a context variable in the views function. Then you can easily access it in your HTML using jinja templating and HTML anchor tag All the best On Wed, Feb 2, 2022 at 11:03 AM ramsha azhar wrote: > still, I'm confused, Guide me what to write in views.py to display images

Re: Gyftr api integration

2021-06-27 Thread RANGA BHARATH JINKA
https://business.gyft.com/developers/ On Sun, 27 Jun 2021, 10:48 pm RANGA BHARATH JINKA, wrote: > Hi. Try this API. They have API documentation. > > https://business.gyft.com/developers/docs/ > > On Sun, 27 Jun 2021, 10:03 pm Anuj Kumar, wrote: > >> Hello, >> Gyf

Re: Gyftr api integration

2021-06-27 Thread RANGA BHARATH JINKA
Hi. Try this API. They have API documentation. https://business.gyft.com/developers/docs/ On Sun, 27 Jun 2021, 10:03 pm Anuj Kumar, wrote: > Hello, > Gyftr.com is gift voucher service website which provides online evouchers > on big brands, so I'm looking for its gift voucher API to integrate i

Re: struck at gettiing each product urls from addidas website

2021-06-21 Thread RANGA BHARATH JINKA
Hi, Try to print all the variables one by one. You will get to know from where the issue is coming from. All the best On Tue, Jun 22, 2021 at 10:06 AM ram manoj Vuyyuru < rammanojvuyy...@gmail.com> wrote: > Hi previous one prints nothing > > and this is another way but getting nothing > > import

Re: Announcing DjHTML: A Django template indender

2021-05-24 Thread RANGA BHARATH JINKA
Awesome On Tue, May 25, 2021 at 10:13 AM lalit suthar wrote: > This is looking pretty cool! > > On Monday, 24 May 2021 at 18:54:12 UTC+5:30 Jaap Joris Vens wrote: > >> Dear all, >> >> I would like to take this opportunity to announce my side project to >> the Django community. It's a Django temp

Re: Exception Value: relation "django_session" does not exist

2021-05-24 Thread RANGA BHARATH JINKA
You are welcome :-) On Tue, May 25, 2021 at 3:41 AM Michał T. Lorenc wrote: > Hi, > Thank you it works. > > On Tue, May 25, 2021 at 12:31 AM RANGA BHARATH JINKA < > bharathjink...@gmail.com> wrote: > >> hi, >> >> Run migrations. python manage.py make

Re: Exception Value: relation "django_session" does not exist

2021-05-24 Thread RANGA BHARATH JINKA
hi, Run migrations. python manage.py makemigrations and python manage.py migrate On Mon, May 24, 2021 at 7:20 PM Mic wrote: > Hello, > I found a Django project and failed to get it running in Docker container > in the following way: > > 1. `*git clone git clone https://github.com/NAL-i5K/djang

Re: i need to show multiselectfields

2021-05-18 Thread RANGA BHARATH JINKA
What is the error you are facing. Please share the screenshots On Tue, 18 May 2021, 10:17 pm Gegi Esitashvili, wrote: > I tried it before posted here, It doesnt work unfortuntly :( > > On Tue, 18 May 2021 at 19:11, RANGA BHARATH JINKA < > bharathjink...@gmail.com&g

Re: i need to show multiselectfields

2021-05-18 Thread RANGA BHARATH JINKA
use {{ facilitie.name }} instead of {{ facilitie }} {{ facilitie.name }} On Tue, May 18, 2021 at 8:27 PM RANGA BHARATH JINKA < bharathjink...@gmail.com> wrote: > Hi, > > Please share screenshots. So that we can understand where you want to show > > On Tue, May 18,

Re: i need to show multiselectfields

2021-05-18 Thread RANGA BHARATH JINKA
Hi, Please share screenshots. So that we can understand where you want to show On Tue, May 18, 2021 at 8:04 PM Gegi Esitashvili wrote: > > and i got it what i wanted but it is only facilitiess id and not its name, > so i need to show up its name and not id. > On Monday, 17 May 2021 at 08:21:25

Re: how to prevent Django do auto capitalize static text in templates

2021-05-18 Thread RANGA BHARATH JINKA
Hi, Try this jinja templating lower filter {{ 'helLo WOrlD'|lower }} On Tue, May 18, 2021 at 6:26 PM David Tobrise wrote: > What happens if you try outputting the units from dynamically instead of > hard-coding it? > > *Best Regards,* > *David O. T.* > > > > > On Tue, May 18, 2021 at 1:07 PM

Re: Django multilinguial docs

2021-04-19 Thread RANGA BHARATH JINKA
Hi, You can try using google translate. https://www.geeksforgeeks.org/add-google-translate-button-webpage/ All the best On Tue, Apr 20, 2021 at 1:26 AM Archana Singh wrote: > Can anyone please guide how the django docs website has implemented the > translating the content of the website to di

Re: How to embed logo on uploaded images

2021-04-19 Thread RANGA BHARATH JINKA
Hi, Try this. This may be useful for you. https://www.blog.pythonlibrary.org/2017/10/17/how-to-watermark-your-photos-with-python/ All the best On Mon, Apr 19, 2021 at 12:09 PM Ram wrote: > Hi, > > Registered users in web application upload images to sell market place > items and we need to ad

Re: reg: DRF login API

2021-04-08 Thread RANGA BHARATH JINKA
ising and interesting. I am using custom > User model, where email is used in place of username and happens to be the > unique constraint. SO I really do not understand the above output. If you > need more data, do let me know. > > Regards, > Amitesh > > On Thursday, 8 April, 20

Re: reg: DRF login API

2021-04-08 Thread RANGA BHARATH JINKA
Refer the docs https://httpie.io/ On Thu, Apr 8, 2021 at 6:44 PM RANGA BHARATH JINKA wrote: > Hi, You have to specify the POST method in the command > > http -a USERNAME POST > https://api.github.com/repos/httpie/httpie/issues/83/comments body='HTTPie is > awesome! :hear

Re: reg: DRF login API

2021-04-08 Thread RANGA BHARATH JINKA
Hi, You have to specify the POST method in the command http -a USERNAME POST https://api.github.com/repos/httpie/httpie/issues/83/comments body='HTTPie is awesome! :heart:' All the best On Thu, Apr 8, 2021 at 6:18 PM 'Amitesh Sahay' via Django users < django-users@googlegroups.com> wrote: > HI

Re: error

2021-04-05 Thread RANGA BHARATH JINKA
Hi, I think you have to generate an app password from Gmail and use it instead of your password. Refer to this link. https://support.google.com/mail/answer/185833?hl=en All the best On Mon, Apr 5, 2021 at 7:28 PM Kissanth D wrote: > My project description is using django to login via imap server

Re: Django dependent select without Ajax

2021-03-30 Thread RANGA BHARATH JINKA
Hi, Try this https://www.youtube.com/watch?v=LmYDXgYK1so&ab_channel=CodeBand On Wed, Mar 31, 2021 at 5:41 AM Ryan Nowakowski wrote: > About how many elements do you anticipate will be in the drop-down? > > On March 30, 2021 8:59:19 AM CDT, Sachin Kumar > wrote: >> >> Hi Experts, >> >> Does

Re: Models not found error

2021-03-28 Thread RANGA BHARATH JINKA
Hi, In BloodBank\urls.py file, Please check the include. It should contain .urls not .url at the end. So it is not able to find the urls file. All the best On Mon, Mar 29, 2021 at 2:06 AM Kasper Laudrup wrote: > On 28/03/2021 18.57, Ritika Bokde wrote: > > Can somebody help me to resolve th

Re: How to use .vue files in Django project

2021-02-26 Thread RANGA BHARATH JINKA
Hi, Please follow this guide. This may be useful for you to integrate Vue js in Django. https://dafoster.net/articles/2021/02/16/building-web-apps-with-vue-and-django-the-ultimate-guide/?utm_campaign=Django%2BNewsletter&utm_medium=email&utm_source=Django_Newsletter_64 All the best On Fri

Re: setting up urls of many apps

2021-02-17 Thread RANGA BHARATH JINKA
> that's the error > > On Thu, 18 Feb 2021 at 09:39, Peter Kirieny > wrote: > >> thanks sir >> that's done though the error still persists >> >> On Thu, 18 Feb 2021 at 09:32, RANGA BHARATH JINKA < >> bharathjink...@gmail.com> wrot

Re: setting up urls of many apps

2021-02-17 Thread RANGA BHARATH JINKA
Hi, Please check namespace='core' in project urls.py. For shops app also namespace is same. Please change this namesapce to Shops. All the best On Thu, Feb 18, 2021 at 11:56 AM Peter Kirieny wrote: > in the projects urls.py > > from django.conf import settings > from django.conf.urls.static im

Re: how create new django project with windows 10 and Python 3.9.1

2021-01-27 Thread RANGA BHARATH JINKA
Hi, Don't use py in front. Try with django-admin startproject . Also create a virtual environment and install modules inside that All the best On Wed, Jan 27, 2021 at 7:33 PM Fabio Fidone wrote: > [image: image.png] > > please, Can Someone help me to create a new project with python 3.9.1 and

Re: attempt to write a readonly database

2020-12-30 Thread RANGA BHARATH JINKA
hi, Try running as the root user using sudo permissions. All the best On Wed, Dec 30, 2020 at 8:18 PM Steven Mapes wrote: > This normally means that the user you are running your project as does not > have access to the SQLLite database file. I can see that you are running on > windows so fine

Re: Error After Heroku Deployment

2020-12-30 Thread RANGA BHARATH JINKA
Hi, Run heroku run python manage.py makemigrations heroku run python manage.py migrate All the best On Wed, Dec 30, 2020 at 8:18 PM Sumit Pande <2018bit...@sggs.ac.in> wrote: > ProgrammingError at /accounts/login/ > relation "django_site" does not exist > LINE 1: ..."django_site"."domain", "dj

Re: Is it possible to use REST API on Django template ?

2020-11-28 Thread RANGA BHARATH JINKA
Hi Use JavaScript or jQuery to call APIs in frontend of Django template. You can use fetch API using vanilla JavaScript. You can perform all CRUD operations. All the best 👍 On Sun, 29 Nov 2020, 11:57 am Aman Modi, wrote: > I know how to create API but i just want to know how to use in Django > t

Re: Debbuging

2020-11-15 Thread RANGA BHARATH JINKA
Hi, Run python manage.py makemigrations python manage.py migrate It will create tables in database using your models All the best On Mon, Nov 16, 2020 at 8:58 AM Sidy Mactar wrote: > it's done > > Le lundi 16 novembre 2020 à 03:22:48 UTC, zica...@gmail.com a écrit : > >> please post your rep

Re: QUIZ APP

2020-11-05 Thread RANGA BHARATH JINKA
Hi, You can refer this. All the best 👍 https://youtu.be/bHnT1apz8u8 On Thu, 5 Nov 2020, 7:36 pm jassija...@gmail.com, wrote: > hello, I'm Jaspreet singh > I'm learning Django for my College Project > > Can anyone help me with it im working on QUIZ APP > IT WOULD BE GREAT IF SOMEONE HELPS OR MENT

Re: Regd:- Generating PDF from HTML with image

2020-10-27 Thread RANGA BHARATH JINKA
Hi, Refer to this too. All the best 👍 https://youtu.be/J3MuH6xaDjI On Tue, Oct 27, 2020 at 7:29 PM RANGA BHARATH JINKA < bharathjink...@gmail.com> wrote: > Hi, > > Refer this forGenerating PDF from HTML with image > > https://youtu.be/txlKYeLEflY > > On Tue, Oc

Re: Regd:- Generating PDF from HTML with image

2020-10-27 Thread RANGA BHARATH JINKA
Hi, Refer this forGenerating PDF from HTML with image https://youtu.be/txlKYeLEflY On Tue, Oct 27, 2020 at 7:27 PM RANGA BHARATH JINKA < bharathjink...@gmail.com> wrote: > Hi, > > Refer to this. > > https://www.youtube.com/watch?v=5umK8mwmpWM&ab_channel=DennisIvy >

Re: Regd:- Generating PDF from HTML with image

2020-10-27 Thread RANGA BHARATH JINKA
Hi, Refer to this. https://www.youtube.com/watch?v=5umK8mwmpWM&ab_channel=DennisIvy On Tue, Oct 27, 2020 at 7:24 PM Senthil Kumar wrote: > Thanks a lot. We will check it out & get back to you > > On Tue, Oct 27, 2020 at 6:43 PM Derek wrote: > >> You can try : https://pypi.org/project/xhtml2pd

Re: django template forloop

2020-10-14 Thread RANGA BHARATH JINKA
Hi, You have to end for loop for second for loop On Wed, Oct 14, 2020 at 4:23 PM luca72.b...@gmail.com < luca72.bertolo...@gmail.com> wrote: > Hello > I have this: > {% for x in lista_form %} > {% if forloop.counter < 100 %} > {% for fieldi in formone %} >

Re: E Commerce Website Assistance

2020-10-09 Thread RANGA BHARATH JINKA
Hi, Check this. https://www.youtube.com/playlist?list=PL-51WBLyFTg0omnamUjL1TCVov7yDTRng All the best On Sat, Oct 10, 2020 at 11:29 AM Farai M wrote: > Hello all > > I am doing an ecommerce app can any one who have done a commercial > project assist with maybe documentation and architecture

Re: Ajax, jQuery and Django

2020-10-05 Thread RANGA BHARATH JINKA
Hi, Check this. This may be useful for you. All the best https://www.youtube.com/results?search_query=django+dependent+drop+down+list+from+database On Mon, Oct 5, 2020 at 1:56 PM Kunal Solanke wrote: > Rather than sending ajax every time handle it on frontend in javascript > > On Mon, Oct 5,

Re: Mass Emailing

2020-10-01 Thread RANGA BHARATH JINKA
https://github.com/sherzberg/django-emailer On Thu, Oct 1, 2020 at 1:18 PM RANGA BHARATH JINKA wrote: > Hi, > > Try these. This may be useful > > https://pypi.org/project/django-massmailer/ > > https://docs.djangoproject.com/en/3.1/topics/email/#send-

Re: Mass Emailing

2020-10-01 Thread RANGA BHARATH JINKA
Hi, Try these. This may be useful https://pypi.org/project/django-massmailer/ https://docs.djangoproject.com/en/3.1/topics/email/#send-mass-mail https://stackoverflow.com/questions/8659131/how-does-one-send-an-email-to-10-000-users-in-django All the best On Thu, Oct 1, 2020 a

Re: How to get logged in user location and save it in database

2020-09-30 Thread RANGA BHARATH JINKA
" attribute in this example. So > where attribute should also include nearest city name in that country. > > [image: image.png] > > > Best Regards, > ~Ram > > On Wed, Sep 30, 2020 at 10:36 PM RANGA BHARATH JINKA < > bharathjink...@gmail.com> wrote: >

Re: How to get logged in user location and save it in database

2020-09-30 Thread RANGA BHARATH JINKA
Hi, Use javascript location api https://www.w3schools.com/html/html5_geolocation.asp All the best On Thu, Oct 1, 2020 at 9:59 AM Ram wrote: > Hi All, > > I'm looking for a way to capture location of logged in users in our Web > App and save that location into our database. > > Basical

Re: Send csrf token and retrieve with javascript?

2020-09-30 Thread RANGA BHARATH JINKA
Hi, Check the docs link. This will be useful. All the best https://docs.djangoproject.com/en/3.1/ref/csrf/ On Thu, Oct 1, 2020 at 5:10 AM Alexandro Gonçalves Dos Santos < alexandrogon...@gmail.com> wrote: > I am building a django api to be used in a front end of another server, > how do I s

Re: How to resize image when uploading to the cloudinary?

2020-09-30 Thread RANGA BHARATH JINKA
https://youtu.be/inQyZ7zFMHM Check this out. All the best 👍😁 On Thu, 1 Oct 2020, 5:10 am abhay santra, wrote: > Thank you man... > have you worked with Amazon s3 in django? > > On Wednesday, September 30, 2020, RANGA BHARATH JINKA < > bharathjink...@gmail.com> wrote: >

Re: How to resize image when uploading to the cloudinary?

2020-09-29 Thread RANGA BHARATH JINKA
Hi, I saw a video to upload images to cloudinary. Check it out. https://youtu.be/1T6G7Znrbfg On Tue, Sep 29, 2020 at 7:12 PM abhay santra wrote: > Thank you everyone... > > On Friday, September 25, 2020 at 9:53:32 PM UTC+5:30 Kasper Laudrup wrote: > >> Hi Abbay, >> >> On 25/09/2020 16.

Re: Limit the choices for a ForeignKey

2020-09-27 Thread RANGA BHARATH JINKA
Hi, Check this. This may be useful for you. It is based on dependent dropdown. https://www.youtube.com/watch?v=U_qPp6vPl-g On Sun, Sep 27, 2020 at 10:09 PM Marco Paradisi wrote: > Hi Everyone! > > I need to filter the choices for a foreign key. > > My Model has an attribute SEX that co

Re: domain/sitemap.xml HTTP Error 500, site matching query does not exist

2020-09-26 Thread RANGA BHARATH JINKA
Check the whole logs by going up On Sun, Sep 27, 2020 at 11:07 AM dum dum wrote: > [image: image.png] > This is what I got from heroku logs --tail. > > Thanks. > > On Sun, Sep 27, 2020 at 12:30 PM RANGA BHARATH JINKA < > bharathjink...@gmail.com> wrote: > >>

Re: domain/sitemap.xml HTTP Error 500, site matching query does not exist

2020-09-26 Thread RANGA BHARATH JINKA
Hi, Run heroku logs --tail in terminal All the best On Sun, Sep 27, 2020 at 10:51 AM dum dum wrote: > what do you mean "log files"? > Is that logs in terminal or ? > > In my terminal it works normal, no problem at all. > in localhost it works normal, but in production I got http error 5

Re: How to resize image when uploading to the cloudinary?

2020-09-25 Thread RANGA BHARATH JINKA
Hi, Check this. https://cloudinary.com/documentation/django_image_manipulation On Fri, Sep 25, 2020 at 8:49 PM abhay santra wrote: > > Hi, > I would like to know how to resize any image when uploading to the > cloudinary in django? > > -- > You received this message because you are subs

Re: Recruitment

2020-09-23 Thread RANGA BHARATH JINKA
I am interested On Wed, Sep 23, 2020 at 8:14 PM Anh Nguyen wrote: > I’m, interested! > > On Sep 23, 2020, at 14:23, Harish Thiyagharajan < > harishthiyagh...@gmail.com> wrote: > > I want a interested django user , DM mail for more details , all the > details including payment can be discussed ..

Re: Help in deploying my app!!!!!!!

2020-09-22 Thread RANGA BHARATH JINKA
Sure 👍 On Tue, 22 Sep 2020, 8:06 pm Vishwajit Bhagat, wrote: > Thanks bro. I will reach you if I got errors. > > On Tue, Sep 22, 2020, 7:55 PM RANGA BHARATH JINKA < > bharathjink...@gmail.com> wrote: > >> Hi, >> >> For deploying both as a single, you

Re: Help in deploying my app!!!!!!!

2020-09-22 Thread RANGA BHARATH JINKA
Hi, For deploying both as a single, you have to run npm run build. Then Link in django settings templates the build path of the dist folder. Every time you make a change run, npm run build. All the best. On Tue, Sep 22, 2020 at 7:35 PM Vishwajit Bhagat < vishwajit20bha...@gmail.co

Re: Django compatibility with Django 3.0

2020-09-21 Thread RANGA BHARATH JINKA
Hi, Check this official docs from oracle. https://developer.oracle.com/dsl/vasiliev-django.html On Mon, Sep 21, 2020 at 3:49 PM Vishnu Bhandari wrote: > Hi folks, > Does django 3.0 support oracle 19c database. > If not, How can we achieve this? > > -- > You received this message because yo

Re: New Users Unable to Use Website

2020-09-20 Thread RANGA BHARATH JINKA
You are welcome 😀 On Sun, Sep 20, 2020 at 9:08 PM King Niko wrote: > This method works! Thank you! > > On Sat, Sep 19, 2020 at 23:32 RANGA BHARATH JINKA < > bharathjink...@gmail.com> wrote: > >> Hi, >> >> Try this. >> &g

Re: New Users Unable to Use Website

2020-09-19 Thread RANGA BHARATH JINKA
Hi, Try this. https://stackoverflow.com/questions/36317816/relatedobjectdoesnotexist-user-has-no-userprofile All the best 👍 On Sun, 20 Sep 2020, 8:50 am Lightning Bit, < thelegendofearthretu...@gmail.com> wrote: > Encountering a lot of errors here. Here is the spill: > > > *THE CASE:* >

Re: how to create url helloworld

2020-09-19 Thread RANGA BHARATH JINKA
Hi, Please check the typo. It is django.http On Sun, 20 Sep 2020, 12:11 am coolguy, wrote: > Instead of > from pages import views > > use > from . import views > On Saturday, September 19, 2020 at 11:15:34 AM UTC-4 leoa...@gmail.com > wrote: > >> *file views.py in folder pages >> >> from

Re: Upload Imagae

2020-09-17 Thread RANGA BHARATH JINKA
Hi, Watch the django part of this video https://youtu.be/1Hc7KlLiU9w All the best On Thu, Sep 17, 2020 at 12:42 PM Kasper Laudrup wrote: > Hi kkwaqar007, > > On 17/09/2020 08.17, kkwaq...@gmail.com wrote: > > *How To Upload Image and save the file and save the databases * > > I have a r

Re: How Upload Image Html File To save DataBase

2020-09-16 Thread RANGA BHARATH JINKA
Check django documentation to store images to the folder. Use upload_to in models.py You have to update your models. All the best On Wed, Sep 16, 2020 at 1:50 PM RANGA BHARATH JINKA < bharathjink...@gmail.com> wrote: > Hi, > > Store the images in a folder. > Store the ima

Re: How Upload Image Html File To save DataBase

2020-09-16 Thread RANGA BHARATH JINKA
Hi, Store the images in a folder. Store the images folder path in the database. Don't store the images directly in db. It is not a good practice. Instead use aws for storing images. Follow this tutorial series. https://www.youtube.com/watch?v=inQyZ7zFMHM All the best On Wed, Sep 16, 2020 at 1:

Re: Help:What is the problem in this code?

2020-09-13 Thread RANGA BHARATH JINKA
Hi, Create a virtual environment and install django in a virtual environment. All the best On Sun, Sep 13, 2020 at 9:11 PM Hassan Shuvo wrote: > [image: manage.PNG][image: code.PNG] > > -- > You received this message because you are subscribed to the Google Groups > "Django users" group.

Re: Django Admin

2020-09-09 Thread RANGA BHARATH JINKA
> 1. How to remove the Jazzmin version from the footer > 2. I have a tabular inline which allows me to add more fields but it has > removed the add more button. > > > On 9 Sep 2020, at 4:24 PM, RANGA BHARATH JINKA > wrote: > >  > Hi, > > Use this. > https

Re: Django Admin

2020-09-09 Thread RANGA BHARATH JINKA
Hi, Use this. https://pypi.org/project/django-jazzmin/ All the best On Wed, Sep 9, 2020 at 9:47 PM lada...@gmail.com wrote: > Hello friends, I am developing a system and i want to use bootstrap admin > dashboard but i dont want to loose the features of django admin please how > do

Re: Rocket chat with python: imp

2020-09-08 Thread RANGA BHARATH JINKA
Hi, Try this. https://pypi.org/project/rocket-python/ All the best On Wed, Sep 9, 2020 at 11:00 AM Chander shekhar wrote: > Can anyone help me in integrating rocket chat with python any link > ,videos,or any personal suggestion. > I have to make a chat with it,really imp > > -- > You

Re:

2020-09-08 Thread RANGA BHARATH JINKA
sion? > I already have my virtual env for my project. > > Please advise. Thanks > > On Tue, Sep 8, 2020 at 5:48 PM RANGA BHARATH JINKA < > bharathjink...@gmail.com> wrote: > >> Hi, >>See this link. >> >> https://stackoverflow.com/questions/57000

Re:

2020-09-08 Thread RANGA BHARATH JINKA
Hi, See this link. https://stackoverflow.com/questions/57000214/how-do-i-pip-install-twisted-without-getting-an-error All the best On Tue, Sep 8, 2020 at 4:14 PM hans alexander wrote: > I got errors when installing Django Channels. > I'm using Python 3.8.5, Django 3.1 > > Installing using

Re: ValueError... Cannot query "User": Must be "Model" instance.

2020-09-03 Thread RANGA BHARATH JINKA
Hi, Go through this. This will help you. The error is because of foreign key. https://stackoverflow.com/questions/37839867/django-error-cannot-assign-must-be-an-instance On Thu, Sep 3, 2020 at 8:46 PM Abdu-H wrote: > Hello, > > I am working on an app where car owner will list their car and

Re: How to get client or user side details

2020-09-02 Thread RANGA BHARATH JINKA
Hi, There is a javascript library called Detect.js Detect.js Github: https://github.com/darcyclarke/Detect.js Video Tutorial : https://youtu.be/QukFW1qymSA All the best On Thu, Sep 3, 2020 at 10:49 AM Salima Begum wrote: > Hi, > We are trying to extract new login attempts done

Re: DJANGO ADMINISTRATION ERROR & TemplateDoesNotExist

2020-08-31 Thread RANGA BHARATH JINKA
sing the Server Error (500)? > > On Tue, Sep 1, 2020 at 12:39 AM RANGA BHARATH JINKA < > bharathjink...@gmail.com> wrote: > >> Hi, >> check in browser console for errors >> >> On Tue, Sep 1, 2020 at 2:27 AM Lightning Bit < >> thelegendofearthretu.

Re: DJANGO ADMINISTRATION ERROR & TemplateDoesNotExist

2020-08-31 Thread RANGA BHARATH JINKA
Hi, check in browser console for errors On Tue, Sep 1, 2020 at 2:27 AM Lightning Bit < thelegendofearthretu...@gmail.com> wrote: > I logged into the ADMIN PORTAL and saw that there was an image for each > item in the ADMIN PORTAL. > > Strangely, when returning to the website, I am unable to actu

Re: NoReverseMatch at /searchlit/customsearch and bigger problem of exporting a filtered queryset

2020-08-31 Thread RANGA BHARATH JINKA
No problem. All the best 😀 On Mon, Aug 31, 2020 at 11:35 PM Patrick Carra wrote: > Thanks bharath for the info I'm going to dig more in to these. > > On Friday, August 28, 2020 at 9:05:04 PM UTC-5 bharath...@gmail.com wrote: > >> Hi, >> >> Please check this package. This may help you. All th

Re: Need help in Linode server setup.

2020-08-30 Thread RANGA BHARATH JINKA
Hi, Please check this. https://stackoverflow.com/questions/10873295/error-message-forbidden-you-dont-have-permission-to-access-on-this-server On Mon, Aug 31, 2020 at 12:15 PM Vikas Sri wrote: > We have pushed the codes on a Linode server. But the project is not > getting Live. > Sharing scr

Re: raise ValueError("Missing staticfiles manifest entry for '%s'" % clean_name)

2020-08-30 Thread RANGA BHARATH JINKA
Hi, Please check this. https://stackoverflow.com/questions/44160666/valueerror-missing-staticfiles-manifest-entry-for-favicon-ico On Mon, Aug 31, 2020 at 9:28 AM Lightning Bit < thelegendofearthretu...@gmail.com> wrote: > Hello all, > > Does anyone know how to add a manifest entry for a sta

Re: 500 Server Error | Impossible to Fix

2020-08-30 Thread RANGA BHARATH JINKA
der, 'cartItems':cartItems} > return render(request, 'store/main.html', context) > > > Thus I am confused as to how the Template could be non-existent if it does > in fact exist. Would you all happen to know of any solutions to this? > > > On

Re: 500 Server Error | Impossible to Fix

2020-08-30 Thread RANGA BHARATH JINKA
16ms status=500 bytes=477 protocol=https* > > Thanks Ranga! > > On Sun, Aug 30, 2020 at 8:33 AM RANGA BHARATH JINKA < > bharathjink...@gmail.com> wrote: > >> Hi, >> >>Copy and paste your log errors . I will check once >> >> On Sun, Aug 30, 2

Re: 500 Server Error | Impossible to Fix

2020-08-30 Thread RANGA BHARATH JINKA
Hi, Copy and paste your log errors . I will check once On Sun, Aug 30, 2020 at 5:23 PM King Niko wrote: > Thanks for the suggestion Kasper. > Unfortunately I have not been able to resolve the above bugs utilizing the > recommended logging technique. The: > > > heroku logs —tail > > Works to

Re: NoReverseMatch at /searchlit/customsearch and bigger problem of exporting a filtered queryset

2020-08-28 Thread RANGA BHARATH JINKA
Hi, There is a django module. https://pypi.org/project/django-datatables-view/ On Sat, 29 Aug 2020, 8:25 am RANGA BHARATH JINKA, wrote: > Hi, > > Use jQuery datatable for this. It is easy to use and has inbuilt > search and export to CSV, Excel options als

Re: NoReverseMatch at /searchlit/customsearch and bigger problem of exporting a filtered queryset

2020-08-28 Thread RANGA BHARATH JINKA
Hi, Use jQuery datatable for this. It is easy to use and has inbuilt search and export to CSV, Excel options also. https://datatables.net/extensions/buttons/examples/initialisation/export.html On Sat, 29 Aug 2020, 7:54 am RANGA BHARATH JINKA, wrote: > Hi, > > Check this. >

Re: NoReverseMatch at /searchlit/customsearch and bigger problem of exporting a filtered queryset

2020-08-28 Thread RANGA BHARATH JINKA
Hi, Check this. https://pypi.org/project/django-queryset-csv/ On Sat, 29 Aug 2020, 7:33 am RANGA BHARATH JINKA, wrote: > Hi, > > Please check this package. This may help you. All the best > > https://django-tables2.readthedocs.io/en/latest/pages/filtering.ht

Re: NoReverseMatch at /searchlit/customsearch and bigger problem of exporting a filtered queryset

2020-08-28 Thread RANGA BHARATH JINKA
Hi, Please check this package. This may help you. All the best https://django-tables2.readthedocs.io/en/latest/pages/filtering.html On Sat, 29 Aug 2020, 4:36 am Patrick Carra, wrote: > Hello All! I need some help with a problem I have been struggling with. > One of you generous geniu

  1   2   >