diff --git a/marda_registry/templates/filetype.html b/marda_registry/templates/filetype.html
index 3e34c75..631d983 100644
--- a/marda_registry/templates/filetype.html
+++ b/marda_registry/templates/filetype.html
@@ -6,7 +6,7 @@
Sorry, the file type you requested was not found.
{% endif %}
-
{{ ft['description'] }}
@@ -23,5 +23,43 @@
Registered extractors:
{% endif %}
+{% if ft['associated_file_extensions'] | length != 0 %}
+
Associated file extensions:
+
+ {% for ext in ft['associated_file_extensions'] %}
+ - {{ ext }}
+ {% endfor %}
+
+{% endif %}
+
+{% if ft['associated_software'] | length != 0 %}
+
Associated software:
+
+ {% for software in ft['associated_software'] %}
+ - {{ software }}
+ {% endfor %}
+
+{% endif %}
+
+
+{% if ft['associated_vendors'] | length != 0 %}
+
Associated vendors:
+
+ {% for vendor in ft['associated_vendors'] %}
+ - {{ vendor }}
+ {% endfor %}
+
+{% endif %}
+
+{% if ft['subject'] | length != 0 %}
+
Subjects:
+
+ {% for subject in ft['subject'] %}
+ - {{ subject }}
+ {% endfor %}
+
+{% endif %}
+
+
Return to the list of file types
{% endblock %}