Implemented view for node

This commit is contained in:
Kevin Frantz
2018-09-20 16:03:00 +02:00
parent 1915c77d8c
commit ee1cef71b7
7 changed files with 117 additions and 1 deletions

View File

@@ -0,0 +1,13 @@
{% if nodeList.isEmpty %}
{% trans %}
This list doesn't contain elements.
{% endtrans %}
{% else %}
<ul>
{% for node in nodeList %}
<li><a href="{{ path('app_node_show',{'id':node.id}) }}" class=" nav-link"> <i
class="fas fa-globe"></i> {% trans %}Node{% endtrans %} {{ node.id }}
</a></li>
{% endfor %}
</ul>
{% endif %}