django-classy-tags 3.0.1-1 source package in Ubuntu

Changelog

django-classy-tags (3.0.1-1) unstable; urgency=low

  * New upstream release.
  * Update patch to use local objects.inv in intersphinx mapping.

 -- Michael Fladischer <email address hidden>  Tue, 15 Mar 2022 14:23:42 +0000

Upload details

Uploaded by:
Debian Python Team
Uploaded to:
Sid
Original maintainer:
Debian Python Team
Architectures:
all
Section:
python
Urgency:
Low Urgency

See full publishing history Publishing

Series Pocket Published Component Section

Builds

Kinetic: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
django-classy-tags_3.0.1-1.dsc 2.0 KiB 997b3cfc8ce5996c3f2729c44a073493a867b67975904a80411d5341dff2225c
django-classy-tags_3.0.1.orig.tar.gz 40.6 KiB a4b993328efc79a7f3e3eab58725d4343f8bd2e225b9a1ae6386006493041fd4
django-classy-tags_3.0.1-1.debian.tar.xz 5.4 KiB 67d4bf0ecd5b7104b767697273a58d78cbe010bcf56faf21a0e873d41417d85e

Available diffs

No changes file available.

Binary packages built by this source

python-django-classy-tags-doc: No summary available for python-django-classy-tags-doc in ubuntu kinetic.

No description available for python-django-classy-tags-doc in ubuntu kinetic.

python3-django-classy-tags: Class based template tags for Django projects (Python3 version)

 django-classy-tags is an approach at making writing template tags in
 Django easier, shorter and more fun. It provides an extensible
 argument parser which reduces most of the boiler plate code you
 usually have to write when coding custom template tags.
 .
 django-classy-tags does no magic by design. Thus you will not get
 automatic registering/loading of your tags like other solutions
 provide. You will not get automatic argument guessing from function
 signatures but rather you have to declare what arguments your tag
 accepts. There is no magic in your template tag class either,
 it’s just a subclass of django.template.Node which invokes a parser
 class to parse the arguments when it’s initialized and resolves those
 arguments into keyword arguments in it’s render method and calls its
 render_tag method with those keyword arguments.
 .
 This package contains the Python 3 version of the library.