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 %}
|
{% for (qualified_name, tag) in tags %}
|
||||||
{% if "." in qualified_name %}
|
{% if "." in qualified_name %}
|
||||||
<li>
|
<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)-}}
|
{{tag_object.tag_object(tag, link='search', innertext=qualified_name, with_alt_description=True)-}}
|
||||||
<button
|
<button
|
||||||
class="remove_tag_button red_button button_with_confirm"
|
class="remove_tag_button red_button button_with_confirm"
|
||||||
|
@ -169,7 +169,7 @@ h2, h3
|
||||||
</li>
|
</li>
|
||||||
{% else %}
|
{% else %}
|
||||||
<li>
|
<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)-}}
|
{{tag_object.tag_object(tag, link='search', innertext=qualified_name, with_alt_description=True)-}}
|
||||||
<button
|
<button
|
||||||
class="remove_tag_button red_button button_with_confirm"
|
class="remove_tag_button red_button button_with_confirm"
|
||||||
|
@ -187,7 +187,7 @@ h2, h3
|
||||||
{% if include_synonyms %}
|
{% if include_synonyms %}
|
||||||
{% for synonym in tag.get_synonyms() %}
|
{% for synonym in tag.get_synonyms() %}
|
||||||
<li>
|
<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)-}}
|
{{tag_object.tag_object(tag, link='search', innertext=qualified_name + '+' + synonym)-}}
|
||||||
<button
|
<button
|
||||||
class="remove_tag_button red_button button_with_confirm"
|
class="remove_tag_button red_button button_with_confirm"
|
||||||
|
|
Loading…
Reference in a new issue