Commit 0ddd177d authored by Romain Loth's avatar Romain Loth

remove brackets from keywords

parent 9fd097ad
...@@ -97,7 +97,7 @@ ...@@ -97,7 +97,7 @@
<li> <li>
<b>Country: </b>{{ return_user.info.country }}<br> <b>Country: </b>{{ return_user.info.country }}<br>
<b>Position: </b>{{ return_user.info.position }}<br> <b>Position: </b>{{ return_user.info.position }}<br>
<b>Keywords: </b>{{ return_user.info.keywords }}<br> <b>Keywords: </b>{{ return_user.info.keywords|join(', ') }}<br>
{% if return_user.info.home_url %} {% if return_user.info.home_url %}
<b>Homepage: </b>{{ return_user.info.home_url }}<br> <b>Homepage: </b>{{ return_user.info.home_url }}<br>
......
...@@ -77,7 +77,7 @@ ...@@ -77,7 +77,7 @@
<li> <li>
<b>Country: </b>{{ current_user.info.country }}<br> <b>Country: </b>{{ current_user.info.country }}<br>
<b>Position: </b>{{ current_user.info.position }}<br> <b>Position: </b>{{ current_user.info.position }}<br>
<b>Keywords: </b>{{ current_user.info.keywords }}<br> <b>Keywords: </b>{{ current_user.info.keywords|join(', ') }}<br>
[ <a href="{{ current_user.info.home_url }}" target="blank"> [ <a href="{{ current_user.info.home_url }}" target="blank">
View homepage View homepage
</a>] </a>]
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment