About 6,280,000 results
Open links in new tab
  1. How to get all fields for a Django model? - Stack Overflow

    Given a Django model, I'm trying to list all of its fields. I've seen some examples of doing this using the _meta model attribute, but doesn't the underscore in front of meta indicate that the _meta

  2. How to perform OR condition in django queryset? - Stack Overflow

    I want to write a Django query equivalent to this SQL query: SELECT * from user where income >= 5000 or income is NULL. How to construct the Django queryset filter? User.objects.filter(income_...

  3. python - Django values_list vs values - Stack Overflow

    May 13, 2016 · The best place to understand the difference is at the official documentation on values / values_list. It has many useful examples and explains it very clearly. The django docs are very user …

  4. 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: TemplateDoesNotExist at …

  5. 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.

  6. python - What is the difference between Django and Django Rest ...

    Django is the web development framework in python whereas the Django Rest Framework is the library used in Django to build Rest APIs. Django Rest Framework is especially designed to make the …

  7. Newest 'django' Questions - Stack Overflow

    6 days ago · Django is an open-source server-side web application framework written in Python. It is designed to reduce the effort required to create complex data-driven websites and web applications.

  8. python - What is the path that Django uses for locating and loading ...

    By default django looks for the template folder in apps. But if you want to use template folder from root of project, please create a template folder on root of project and do the followings in settings.py:

  9. How to change the Django default runserver port? - Stack Overflow

    70 As of Django 1.9, the simplest solution I have found (based on Quentin Stafford-Fraser's solution) is to add a few lines to manage.py which dynamically modify the default port number before invoking …

  10. python - How to check Django version - Stack Overflow

    Jun 24, 2011 · 816 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 check the …