 
      
    | You are here | alexgaynor.net | ||
| | | | | keepsimple.dev | |
| | | | | Build a Trello Clone with Django Tutorial. In Part 1 we explore how to build the user authentication | |
| | | | | jinyuz.dev | |
| | | | | 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" | |
| | | | | www.laceyhenschel.com | |
| | | | | This week I needed to manipulate the privacy of a Wagtail page programmatically. The Wagtail docs show you how to edit page privacy in the admin UI, but it doesn't peek behind the curtain to show you the code. The example here is a result of my Google searching. | |
| | | | | mherman.org | |
| | | Step-by-step guide covering how to automatically deploy a Jekyll site to Netlify using Docker and GitLab CI. | ||