Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -724,4 +724,7 @@ xpage.demand_validation.form.labelDemand.infos=Informations compl\u00e9mentaires
xpage.demand_validation.form.labelStatus=Choix
xpage.demand_validation.form.labelStatus.help=Veuillez choisir un retour pour cette demande
xpage.demand_validation.form.labelValidate=Valider la demande
xpage.demand_validation.form.labelReject=Rejeter la demande
xpage.demand_validation.form.labelReject=Rejeter la demande

# Manage Notification
manage_notification.pageTitle=Notification
Original file line number Diff line number Diff line change
@@ -1,30 +1,33 @@
<#macro tabs2 tab >
<@tabs>
<@listTabs>
<li <#if tab="demand">class="active"</#if>>
<li <#if tab="demand">class="active"</#if>>
<a href="jsp/admin/plugins/appcenter/ManageDemands.jsp">#i18n{appcenter.manage_demands.pageTitle}</a>
</li>
<li <#if tab="application">class="active"</#if>>
<li <#if tab="application">class="active"</#if>>
<a href="jsp/admin/plugins/appcenter/ManageApplications.jsp">#i18n{appcenter.manage_applications.pageTitle}</a>
</li>
<li <#if tab="userapplicationrole">class="active"</#if>>
<li <#if tab="userapplicationrole">class="active"</#if>>
<a href="jsp/admin/plugins/appcenter/ManageUserApplicationRoles.jsp">#i18n{appcenter.manage_userApplicationRoles.pageTitle}</a>
</li>
<li <#if tab="attribute">class="active"</#if>>
<li <#if tab="attribute">class="active"</#if>>
<a href="jsp/admin/plugins/appcenter/ManageAttributes.jsp">#i18n{appcenter.manage_attributes.pageTitle}</a>
</li>
<li <#if tab="demandtypes">class="active"</#if>>
<li <#if tab="demandtypes">class="active"</#if>>
<a href="jsp/admin/plugins/appcenter/ManageDemandTypes.jsp">#i18n{appcenter.manage_demandtypes.pageTitle}</a>
</li>
<li <#if tab="demandtypecategories">class="active"</#if>>
<li <#if tab="demandtypecategories">class="active"</#if>>
<a href="jsp/admin/plugins/appcenter/modules/guichetpro/ManageDemandTypeCategories.jsp">#i18n{module.appcenter.guichetpro.manage_demandtypecategories.pageTitle}</a>
</li>
<li <#if tab="role">class="active"</#if>>
<li <#if tab="role">class="active"</#if>>
<a href="jsp/admin/plugins/appcenter/ManageRoles.jsp">#i18n{appcenter.manage_roles.pageTitle}</a>
</li>
<li <#if tab="organization">class="active"</#if>>
<li <#if tab="organization">class="active"</#if>>
<a href="jsp/admin/plugins/appcenter/ManageOrganizations.jsp">#i18n{appcenter.manage_organizations.pageTitle}</a>
</li>
<li <#if tab="notification">class="active"</#if>>
<a href="jsp/admin/plugins/appcenter/ManageNotification.jsp">#i18n{appcenter.manage_notification.pageTitle}</a>
</li>
</@listTabs>
</@tabs>
</#macro>
9 changes: 9 additions & 0 deletions webapp/jsp/admin/plugins/appcenter/ManageNotification.jsp
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<jsp:useBean id="manageNotification" scope="session" class="fr.paris.lutece.plugins.appcenter.modules.fastdeployapplication.web.ManageNotificationJspBean" />
<% String strContent = manageNotification.processController ( request , response ); %>

<%@ page errorPage="../../ErrorPage.jsp" %>
<jsp:include page="../../AdminHeader.jsp" />

<%= strContent %>

<%@ include file="../../AdminFooter.jsp" %>