diff --git a/refpolicy/doc/templates/int_list.html b/refpolicy/doc/templates/int_list.html
new file mode 100644
index 0000000..52d5e5f
--- /dev/null
+++ b/refpolicy/doc/templates/int_list.html
@@ -0,0 +1,31 @@
+
Master interface index:
+
+[[for int in interfaces]]
+
+Module:
+[[int['mod_name']]]
+Layer:
+[[int['mod_layer']]]
+
+[[exec i = 0]]
+[[int['interface_name']]](
+ [[for arg in int['interface_parameters']]]
+ [[if i != 0]]
+ ,
+ [[end]]
+ [[exec i = 1]]
+ [[if arg['optional'] == 'yes']]
+ [
+ [[end]]
+ [[arg['name']]]
+ [[if arg['optional'] == 'yes']]
+ ]
+ [[end]]
+ [[end]]
+ )
+
+
+[[int['interface_desc']]]
+
+
+[[end]]