| 1234567891011121314151617181920212223242526272829303132333435363738 |
- <%@page contentType="text/html;charset=UTF-8"%>
- <%@include file="/taglibs.jsp"%>
- <%pageContext.setAttribute("currentHeader", "bpm-console");%>
- <%pageContext.setAttribute("currentMenu", "bpm-process");%>
- <!doctype html>
- <html lang="en">
- <head>
- <%@include file="/common/meta.jsp"%>
- <title>模型</title>
- <%@include file="/common/s.jsp"%>
- </head>
- <body>
- <%@include file="/header/bpm-console.jsp"%>
- <div class="row-fluid">
- <%@include file="/menu/bpm-console.jsp"%>
- <!-- start of main -->
- <section id="m-main" class="span10" style="float:right">
- <article class="m-widget">
- <header class="header">
- <h4 class="title">提醒</h4>
- </header>
- <div class="content">
- ${message}
- </div>
- </article>
- </section>
- <!-- end of main -->
- </div>
- </body>
- </html>
|