{% extends "base.html" %} {% load universaltag_tags %} {% block head %} {% render_universaltag_head %} {% endblock %} {% block introduction %}

Introduction

Tagging is really important feature for web application now. I tried to find Django library for tagging but I could not find anything to fit my image. I want the features below for library

First time, I tried to recomponent django-tagging to fit my opinion but soon I found it is more difficult than to create my own library. Too make Ajax feature, I use django-piston library but the library is a little bit buggy so I folked the library and fix it. So use my falked one to use with this library. The links below is what required to run this library.

This library default skin use Reflection Icon Set by Webdesigner Depot. Thanks for them really nice pictures.

{% endblock %} {% block content %}

Demo

Click a pencil icon belong to each blog post, input tags to input field and then hit enter to post tag. To test Freeze feature, Login as guest (password=guest) via clicking Tag icon stack on top of this page.


{% for entry in object_list %}

{{ entry.title }}

{{ entry.body }}
{% render_universaltag_tags of entry %}
{% endfor %} {% endblock %}