django-payme is a Django app for handling online payments. It can work with any existing setup without a need of changing other applications' models.Any model as order, really?Yes, thanks to great AbstractMixin we can attach Payment model to any other...

read more

django-protocolify is a template tag for Django that allows the protocol/scheme used in links within a block of template code to be changed.A use-case for this is when a section of your Web site uses HTTPS (e.g. a payment page) and you want the user to...

read more

django-extramimetypes is Django app that hooks Python's mimetypes module to allow extra mimetype guesses to be added via a project's settings.py.Developer commentsI wrote it because on Mac OSX, Django's static serve view doesn't correctly set the...

read more

django-tokenfield is a Django app that provides a token based form field for Django. Its interface is very similar to the message recipient input on Facebook or iOS. It behaves as a normal text field but allows custom placeholders to be inserted at any...

read more

django-revisionfield is a model field that auto increments every time the model is saved.UsageImport the field and use it on a model:from django.db import modelsfrom django_revisionfield import RevisionFieldclass Something(models.Model): name =...

read more
django-ace

django-ace 1.0.1

django-ace is a Django app that provides integration for ajax.org ACE with Django.Usagefrom django import formsform django_ace import AceWidgetclass EditorForm(forms.Form): text = forms.CharField(widget=AceWidget)Syntax highlighting and static...

read more

django-attest is a Django app that provides the same testing helper functionality as Django's :class:`django.test.TestCase` wrapper of :class:`unittest.TestCase`.django_attest.TestContext provides the same functionality as subclassing...

read more