Code Monkey home page Code Monkey logo

django-groundworks's Introduction

README

Utilities for django projects.

How to Install

Install in your virtual environment with:

$ pip install -e git+https://gitlab.com/alekosot/django-groundworks.git#egg=groundworks

django-groundworks's People

Contributors

alekosot avatar

Stargazers

 avatar  avatar

Watchers

 avatar  avatar  avatar

Forkers

fellowfun

django-groundworks's Issues

Problem with django.utils.six when upgrading to Django 3.0.x

Hello. Congrats for the package!

I wanted to update my project from Django 2.2.x to 3.0.x. However, the following error occurred:
File "/django_app/src/django-groundworks/groundworks/models.py", line 7, in <module> from django.utils import six, timezone ImportError: cannot import name 'six'

Per here, django removed django.utils.six since from version >3. (python 2 was totally removed even from compatibility APIs)

six is imported and used in groundworks/models.py in WithEnforcedValues Model.

Timestamped Model date_updated not updating

Hello!
Django version 2.2.1 used.

When a model instance is created, date_created, date_updated are correctly set to timezone.now().
However, when this instance is updated, date_updated is not updating.

I think this is expected since the column in TimeStamped Model is:
date_updated = models.DateTimeField( _('date updated'), default=timezone.now)
which dictates a default value when there is none. So, when there is a value already, there will be no update.

What I had done to fix the issue was to create a custom Timestamped Model with the columns below:
date_created = models.DateTimeField(_('date_created'), default=timezone.now)
date_updated = models.DateTimeField(_('date_updated'), auto_now=True)

One thing to take into consideration is that I used default=timezone.now, in order to be able to override the date_created if needed. If you want the date_created value to be irreversible, then you should use auto_now_add=True, where the default value cannot be overridden (same goes with auto_now=True).

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.