Rearrange these arguments to be in the same order as next line.
This commit is contained in:
parent
ac40c86e86
commit
ffe0be1c37
1 changed files with 3 additions and 3 deletions
|
@ -154,7 +154,7 @@ h2, h3
|
|||
{% for (qualified_name, tag) in tags %}
|
||||
{% if "." in qualified_name %}
|
||||
<li>
|
||||
{{tag_object.tag_object(tag, innertext='(?)', link='info')}}
|
||||
{{tag_object.tag_object(tag, link='info', innertext='(?)')}}
|
||||
{{tag_object.tag_object(tag, link='search', innertext=qualified_name, with_alt_description=True)-}}
|
||||
<button
|
||||
class="remove_tag_button red_button button_with_confirm"
|
||||
|
@ -169,7 +169,7 @@ h2, h3
|
|||
</li>
|
||||
{% else %}
|
||||
<li>
|
||||
{{tag_object.tag_object(tag, innertext='(?)', link='info')}}
|
||||
{{tag_object.tag_object(tag, link='info', innertext='(?)')}}
|
||||
{{tag_object.tag_object(tag, link='search', innertext=qualified_name, with_alt_description=True)-}}
|
||||
<button
|
||||
class="remove_tag_button red_button button_with_confirm"
|
||||
|
@ -187,7 +187,7 @@ h2, h3
|
|||
{% if include_synonyms %}
|
||||
{% for synonym in tag.get_synonyms() %}
|
||||
<li>
|
||||
{{tag_object.tag_object(tag, innertext='(+)', link=none)}}
|
||||
{{tag_object.tag_object(tag, link=none, innertext='(+)')}}
|
||||
{{tag_object.tag_object(tag, link='search', innertext=qualified_name + '+' + synonym)-}}
|
||||
<button
|
||||
class="remove_tag_button red_button button_with_confirm"
|
||||
|
|
Loading…
Reference in a new issue