django_base_model

A model from which all django models can extend
Download

django_base_model Ranking & Summary

Advertisement

  • Rating:
  • License:
  • MIT/X Consortium Lic...
  • Price:
  • FREE
  • Publisher Name:
  • rogeliorv
  • Publisher web site:
  • http://github.com/rogeliorv/

django_base_model Tags


django_base_model Description

django_base_model is a Django app that provides extensions to the Django Base Model and Django Model Manager. Gives some additional utility functions.To make use of the classes in this package:1) Create your own django project (python django-admin.py startproject)2) Create a django application (python manage.py startproject sampleapp)3) Add your newly created application to INSTALLED_APPS in settings.py4) In models.py add the following linesfrom django_base_model import ExtendedBaseModel, ExtendedBaseModelManagerfrom django.db import modelsclass ExampleModel(ExtendedBaseModel):text = models.CharField(max_length = 256)objects = ExtendedBaseModelManager()Product's homepage


django_base_model Related Software