/explore

Click through on any links that interest you or select the planets on the right to continue exploring the Outer Web.
You are here

alexgaynor.net
| | kenan7.com
1.7 parsecs away

Travel
| | Enhance Django admin with a symmetrical ManyToMany filter widget for a consistent and user-friendly experience. Improve UI and UX with this guide
| | simpleisbetterthancomplex.com
2.5 parsecs away

Travel
| | The Django forms API have two field types to work with multiple options: ChoiceField and ModelChoiceField.
| | jinyuz.dev
2.0 parsecs away

Travel
| | Often, I forget how to display the raw SQL of a queryset in Django. This is a quick and easy example of how to do it from django.contrib.auth.models import User qs = User.objects.all() print(qs.query) SELECT "auth_user"."id", "auth_user"."password", "auth_user"."last_login", "auth_user"."is_superuser", "auth_user"."username", "auth_user"."first_name", "auth_user"."last_name", "auth_user"."email", "auth_user"."is_staff", "auth_user"."is_active", "auth_user"."date_joined" FROM "auth_user"
| | simpleisbetterthancomplex.com
17.9 parsecs away

Travel
| In this tutorial we are going to explore three date/datetime pickers options that you can easily use in a Django project. We are going to explore how to do i...