This commit is contained in:
Vincent Prouillet 2019-08-10 19:09:29 +02:00
parent 7f459940e1
commit c503a9fe5d
2 changed files with 6 additions and 3 deletions

View file

@ -169,7 +169,6 @@ impl Taxonomy {
self.items.iter().map(|i| SerializedTaxonomyItem::from_item(i, library)).collect();
context.insert("terms", &terms);
context.insert("taxonomy", &self.kind);
context.insert("lang", &self.kind.lang);
context.insert("current_url", &config.make_permalink(&self.kind.name));
context.insert("current_path", &self.kind.name);
@ -418,7 +417,11 @@ mod tests {
let mut a = None;
for x in taxonomies {
match x.kind.name.as_ref() {
"tags" => t = Some(x),
"tags" => {
if x.kind.lang == "en" {
t = Some(x)
}
},
"categories" => c = Some(x),
"auteurs" => a = Some(x),
_ => unreachable!(),

View file

@ -1,3 +1,3 @@
{% for tag in terms %}
{{ tag.name }} {{ tag.slug }} {{ tag.pages | length }} {{ lang }}
{{ tag.name }} {{ tag.slug }} {{ tag.pages | length }} {{ taxonomy.lang }}
{% endfor %}