Articles tagged with Django

  1. Getting VueJS 3 to work nicely with Django

    Most of the tutorials for using Django and VueJS assume that you want to completely remove Django views and instead just use VueJS to serve the entire frontend. My usecase are usually different - I mainly find that I want to use VueJS sparingly to provide some enhancement to a particular …
  2. Using Django's GeneratedField

    Django (the python web framework) version 5.0, released in December 2023, introduced a new field type for models - the GeneratedField. This is potentially a very handy tool - it allows you to define fields that are based on other fields, but gives you the flexibility and speed that comes with …