diff --git a/templates/Projects/info/info.html.twig b/templates/Projects/info/info.html.twig
index c167a274..f93c1d52 100644
--- a/templates/Projects/info/info.html.twig
+++ b/templates/Projects/info/info.html.twig
@@ -57,10 +57,26 @@
{{ project.bomEntries | length }}
-
-
-
+ {% if project.attachments is not empty %}
+
+
+
+ {% trans %}attachment.labelp{% endtrans %}
+ {{ project.attachments | length }}
+
+
+ {% endif %}
+ {% if project.parameters is not empty %}
+
+
+
+ {% trans %}entity.info.parameters.tab{% endtrans %}
+ {{ project.parameters | length }}
+
+
+ {% endif %}
@@ -76,7 +92,13 @@
{% include "Projects/info/_bom.html.twig" %}
- Attachments
+ {% include "Parts/info/_attachments_info.html.twig" with {"part": project} %}
+
+
+ {% for name, parameters in project.groupedParameters %}
+ {% if name is not empty %}
{{ name }}
{% endif %}
+ {{ helper.parameters_table(project.parameters) }}
+ {% endfor %}