diff --git a/backoffice/src/main/webapp/WEB-INF/templates/template.xhtml b/backoffice/src/main/webapp/WEB-INF/templates/template.xhtml
index dd6bbe5a37ec6c24cfa1513a57118864385417d2..5a3f342fd76567ac282398d2a2241895fba48fe3 100644
--- a/backoffice/src/main/webapp/WEB-INF/templates/template.xhtml
+++ b/backoffice/src/main/webapp/WEB-INF/templates/template.xhtml
@@ -51,6 +51,10 @@
                             rendered="#{security.hasRole('Admin')}"/>
                 <p:menuitem value="Usuarios" action="gestionUsuarios.xhtml?faces-redirect=true"
                             rendered="#{security.hasRole('Admin')}"/>
+                <p:menuitem value="Notificaciones" action="gestionNotificacion.xhtml?faces-redirect=true"
+                            rendered="#{security.hasRole('Admin')}"/>
+                <p:menuitem value="Configuracion" action="gestionSistema.xhtml?faces-redirect=true"
+                            rendered="#{security.hasRole('Admin')}"/>
 
                 <p:menuitem value="Gestionar Hechos" action="gestionSubmitter.xhtml?faces-redirect=true"
                             rendered="#{security.hasRole('Submitter')}"/>
diff --git a/backoffice/src/main/webapp/jsf/gestionNotificacion.xhtml b/backoffice/src/main/webapp/jsf/gestionNotificacion.xhtml
new file mode 100644
index 0000000000000000000000000000000000000000..b97d80b68a81475919c6c32324e8d1b4846139a3
--- /dev/null
+++ b/backoffice/src/main/webapp/jsf/gestionNotificacion.xhtml
@@ -0,0 +1,21 @@
+<!DOCTYPE html>
+<html xmlns="http://www.w3.org/1999/xhtml"
+      xmlns:ui="http://java.sun.com/jsf/facelets"
+      xmlns:p="http://primefaces.org/ui"
+      xmlns:h="http://xmlns.jcp.org/jsf/html"
+>
+<body>
+
+<ui:decorate template="/WEB-INF/templates/template.xhtml">
+    <ui:define name="contenido">
+        <h:form>
+            <p:outputPanel style="font-size: 30px;text-align: center">
+                <h:outputText value="Gestion de Notificacion"/>
+            </p:outputPanel>
+
+        </h:form>
+    </ui:define>
+</ui:decorate>
+</body>
+</html>
+
diff --git a/backoffice/src/main/webapp/jsf/gestionSistema.xhtml b/backoffice/src/main/webapp/jsf/gestionSistema.xhtml
new file mode 100644
index 0000000000000000000000000000000000000000..b97d80b68a81475919c6c32324e8d1b4846139a3
--- /dev/null
+++ b/backoffice/src/main/webapp/jsf/gestionSistema.xhtml
@@ -0,0 +1,21 @@
+<!DOCTYPE html>
+<html xmlns="http://www.w3.org/1999/xhtml"
+      xmlns:ui="http://java.sun.com/jsf/facelets"
+      xmlns:p="http://primefaces.org/ui"
+      xmlns:h="http://xmlns.jcp.org/jsf/html"
+>
+<body>
+
+<ui:decorate template="/WEB-INF/templates/template.xhtml">
+    <ui:define name="contenido">
+        <h:form>
+            <p:outputPanel style="font-size: 30px;text-align: center">
+                <h:outputText value="Gestion de Notificacion"/>
+            </p:outputPanel>
+
+        </h:form>
+    </ui:define>
+</ui:decorate>
+</body>
+</html>
+
diff --git a/backoffice/src/main/webapp/jsf/verHecho.xhtml b/backoffice/src/main/webapp/jsf/verHecho.xhtml
new file mode 100644
index 0000000000000000000000000000000000000000..271eb50e32d7edf5a05726f4830af7bd51ab7f64
--- /dev/null
+++ b/backoffice/src/main/webapp/jsf/verHecho.xhtml
@@ -0,0 +1,24 @@
+<!DOCTYPE html>
+<html xmlns="http://www.w3.org/1999/xhtml"
+      xmlns:ui="http://java.sun.com/jsf/facelets"
+      xmlns:p="http://primefaces.org/ui"
+      xmlns:h="http://xmlns.jcp.org/jsf/html"
+>
+<body>
+
+<ui:decorate template="/WEB-INF/templates/template.xhtml">
+    <ui:define name="contenido">
+        <h:form>
+            <p:outputPanel style="font-size: 30px;text-align: center">
+                <h:outputText value="Ver Hecho"/>
+            </p:outputPanel>
+
+            aca iria toda la info del hecho, permite ver checker o asignar uno si es submitter, lista los resultados de los mecanismos
+            y permite verificarlo
+
+        </h:form>
+    </ui:define>
+</ui:decorate>
+</body>
+</html>
+