Subversion Repositories bacoAlunos

Rev

Rev 1306 | Blame | Compare with Previous | Last modification | View Log | RSS feed

<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<%@ taglib uri="/WEB-INF/tlds/struts-html.tld" prefix="html" %>
<%@ taglib uri="/WEB-INF/tlds/struts-logic.tld" prefix="logic" %>
<%@ taglib uri="/WEB-INF/tlds/struts-bean.tld" prefix="bean" %>
<%@ taglib uri="/WEB-INF/tlds/struts-nested.tld" prefix="nested" %>
<%@ taglib uri="/WEB-INF/tlds/jomm.tld" prefix="jomm" %>
<%@ taglib uri="/WEB-INF/tlds/baco.tld" prefix="baco" %>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<jsp:useBean id="ManagedIdentifierForm" type="pt.estgp.estgweb.web.form.managedidentifier.ManagedIdentifierForm" scope="request"/>
<div id="contentIntranet">
    <div id="contentPane">
        <html:errors/>
        <jomm:messages/>
        <div class="form blockForm">
            <table>
                <tr>
                    <th>
                        <bean:message key="collection"/>
                    </th>
                    <td>
                        ${ManagedIdentifierForm.collectionView.name}
                    </td>
                </tr>
                <tr>
                    <th>
                        <bean:message key="updateDate"/>
                    </th>
                    <td>
                            ${ManagedIdentifierForm.collectionView.formatedUpdateDate}
                    </td>
                </tr>
                <tr>
                    <th>
                        <bean:message key="managedidentifier.sequence.number"/>
                    </th>
                    <td>
                            ${ManagedIdentifierForm.collectionView.sequenceNumber}
                    </td>
                </tr>
                <tr>
                    <th>
                        <bean:message key="managedidentifier.owner"/>
                    </th>
                    <td>
                        ${ManagedIdentifierForm.collectionView.ownerUserView.name} (${ManagedIdentifierForm.collectionView.ownerUserView.username})
                    </td>
                </tr>
            </table>
        </div>

        <html:form action="/user/managedIdentifierFromServiceZone">
            <html:hidden property="collectionView.id"/>
            <input type="hidden" name="dispatch" value="searchIdentifier">
            <table class="searchTab">
                <tr>
                    <th>
                        <bean:message key="managedidentifier.sequence.number"/>
                    </th>
                    <td>
                        <html:text property="identifierView.sequenceNumber" value=""/>

                        <input type="button"
                               onclick="this.form.submit()"
                               value="<bean:message key="search"/>"/>
                    </td>
                </tr>
            </table>
        </html:form>
    </div>
</div>

Generated by GNU Enscript 1.6.5.2.