About 6,450,000 results
Open links in new tab
  1. python - How to check Django version - Stack Overflow

    Jun 24, 2011 · 815 Django 1.5 supports Python 2.6.5 and later. If you're under Linux and want to check the Python version you're using, run python -V from the command line. If you want to …

  2. How do I do a not equal in Django queryset filtering?

    Feb 22, 2017 · 174 the field=value syntax in queries is a shorthand for field__exact=value. That is to say that Django puts query operators on query fields in the identifiers. Django supports the …

  3. python - Django TemplateDoesNotExist? - Stack Overflow

    Dec 18, 2009 · My local machine is running Python 2.5 and Nginx on Ubuntu 8.10, with Django builded from latest development trunk. For every URL I request, it throws: …

  4. Django - show loading message during long processing

    Here is another explanation on how to get a loading message for long loading Django views Views that do a lot of processing (e.g. complex queries with many objects, accessing 3rd party …

  5. How to get the current URL within a Django template?

    May 21, 2010 · I was wondering how to get the current URL within a template. Say my current URL is: .../user/profile/ How do I return this to the template?

  6. Django MEDIA_URL and MEDIA_ROOT - Stack Overflow

    Mar 29, 2017 · Learn how to configure Django's MEDIA_URL and MEDIA_ROOT settings for managing media files effectively in your project.

  7. django - What is reverse ()? - Stack Overflow

    Apr 18, 2021 · When I read Django code sometimes, I see in some templates reverse(). I am not quite sure what this is but it is used together with HttpResponseRedirect. How and when is this …

  8. How to access the local Django webserver from outside world

    I realize the Django webserver is not a production server, but it's important for me for testing purposes to be able to access it from the outside world -- i.e. not from a web browser on the …

  9. python - Connecting Django with MSSQL server - Stack Overflow

    Using mssql-django, we can connect Django to MSSQL (SQL Server) with Windows Authentication and SQL Server Authentication. I use SQL Server 2019 Express. With …

  10. How to use if/else condition on Django Templates?

    How to use if/else condition on Django Templates? Asked 13 years, 4 months ago Modified 2 years, 10 months ago Viewed 256k times