});
//Tags autocomplete action
- var tags = {{ tags|safe }};
- $("#id_tags").autocomplete(tags, {
+ $("#id_tags").autocomplete("/matching_tags", {
minChars: 1,
matchContains: true,
max: 20,
multiple: true,
multipleSeparator: " ",
- formatItem: function(row, i, max) {
+ /*formatItem: function(row, i, max) {
return row.n + " ("+ row.c +")";
},
formatResult: function(row, i, max){
return row.n;
+ }*/
+ formatItem: function(row, i, max, value) {
+ return row[1].split(".")[0] + " (" + row[1].split(".")[1] + ")";
+ },
+
+ formatResult: function(row, i, max, value){
+ return row[0];
}
});
-
});
</script>
{% endblock %}
<div class="form-item">
<div id="wmd-button-bar" class="wmd-panel"></div>
- {{ form.text }}
+ {{ form.text }} {{ form.text.errors }}
<div class="preview-toggle">
<table width="100%">