问题标签 [django-tagging]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
1 回答
764 浏览

django - Django taggit,使用自定义标记名

我已经设置了 django-taggit 并且工作正常,所有标签都列在 admin 中的标签下。

但是,我现在想将我的标签分成两组,英文标签和西班牙语标签。

这就是我所拥有的,来自这里的文档:

(编辑)现在标记工作正常,但在正确的数据库表中的标记的 temrs 中,但我没有在管理员中看到我的自定义标记 - 我如何在管理员中显示我的自定义标记?

我哪里错了?

0 投票
1 回答
2425 浏览

django - Django - Global navigation in base.html using model

I have a number of templates that extend base.html. I want the base.html template to house my global navigation and have the text and links in the global navigation be based on a model Division (i.e. the CharField in the model will be used as the button text in the global nav, and the id will be used to build the URL). I thought tags might work, but what I end up with is this (yes, I'm new to Django and Python):

current_tags.py

I'm attempting just getting the text value in each object to print at this point because I can't get or work with the objects in the template, as you'll see below.

base.html

I'm sure there is a better way to do global nav based on a model in Django. I basically want to get all the Division objects and put them into a <ul> to use as my global nav in base.html. I am not that familiar with Django, but my views.py don't help me because I am rendering other templates, not base.html, which are extending base.html. For what it's worth, here's one views.py, where /display/info.html template extends base.html:

0 投票
0 回答
57 浏览

django - 我在管理面板中有 ascii 字符错误 django-tagging

我正在为标签使用 django-tagging。但我有一个问题。标签有一个ASCII字符。示例:我

问题=>

0 投票
1 回答
1159 浏览

django - 过滤自定义 Django 标签?

我创建了一个自定义标签,它接受一个参数:

我会使用add参数:

我希望参数是“most_people”,但它是“most”|add:“_people”。似乎没有在自定义标签内调用过滤器。如何让它们工作?

0 投票
2 回答
5822 浏览

html - Django trans 标签可以包含 HTML 标签吗?

Django trans 标签可以包含 HTML 标签吗?例如我可以做{% trans "Hold <em><strong>Ctrl</strong></em>" %}吗?还是我必须这样做{% trans "Hold" %} <em><strong>{% trans "Ctrl" %}</strong></em>"

0 投票
0 回答
120 浏览

python - sweetpie save_m2m,TagRelatedManager 评估为 False

实际上,我正在尝试保存一个美味的模型资源,其中包含TagField来自django-tagulous

这是我的模型和资源:

卷曲部分:

shell 不会返回任何错误,但是标签与新对象没有关联。

通过覆盖ModelResource save_m2m method,在super调用标签对象存在之前(打印bundle.data ['tags']),然后在super(SimpleModelResource, self).save_m2m(bundle)tastepie中查找与标签字段关联的相关管理器,返回related_mngr,但是当使用以下方法对其进行评估时:if not related_mngr它评估为True跳过 m2m 关联。

0 投票
1 回答
48 浏览

python - 将字符串列表分配给可标记字段

我有一个列表 ,哪里,

我将字符串转换为字符串列表,如下所示:

同样,在我的数据库模型中,我有一个字段关键字

我想将字符串ss列表分配给字段关键字。我在下面试过:

但我得到了错误。我想将字符串列表分配给我的标签字段。

0 投票
1 回答
181 浏览

django - Django (1.9) 沃森索引 Django Tagging TagField

如何索引由Django Tagging (v0.4.5) TagField 管理器管理的字段?

标签都正常工作,Watson (v1.2.1) 正在索引模型并返回搜索字符和文本字段的结果,但如果搜索词是标签,则不会。

注册是在 AppConfig 中完成的,如下所述:

并且Team具有tagTagField 字段的模型都很好:

有人知道如何使字段索引与字符或文本字段相同吗?

非常感谢丰富

0 投票
1 回答
636 浏览

python - 使用 django-taggit 获取与父对象关联的所有标签

我有模型 Restaurant& ReviewReview我在使标签适用于评论方面TaggableManager()没有问题吗?但我也想知道与该Restaurant对象关联的所有标签。

我可以编写自己的函数来遍历餐厅的所有评论,以获取与餐厅相关联的所有标签。但我正在寻找更简洁的方法来获取在单个数据库查询中完成它的标签。

0 投票
0 回答
110 浏览

python - 从 Django 应用程序加载模板标签时出错

我正在尝试加载django-tagging应用程序中包含的模板标签(django-tagging templatetags文档未指定加载语句应该是什么),但我收到一个 TemplateSyntax 错误,提醒我加载或注册标签 - 其中我很确定我已经完成了。

这是我的模板的相关部分

错误信息是:

第 11 行的块标记无效:“tags_for_model”,预期为“endblock”。您是否忘记注册或加载此标签?

查看 django-tagging 模块,我可以看到 templatetags 代码:

我想使用的标签已在此文件中注册:

因此,从我的角度来看,它既已注册又已加载-有什么明显的我遗漏了吗?