Update of /cvsroot/openinteract/OpenInteract/pkg/base_user/template
In directory usw-pr-cvs1:/tmp/cvs-serv1619/template
Added Files:
user_search_results.meta user_search_results.tmpl
Log Message:
added search results page that uses the listing as a component
--- NEW FILE: user_search_results.meta ---
name: user_search_results
title: Results of user search
package: base_user
--- NEW FILE: user_search_results.tmpl ---
[%- DEFAULT theme = OI.theme_properties -%]
[%- PROCESS error_message -%]
[%- PROCESS status_message -%]
<div align="center">
<table border="0" width="50%" cellpadding="5" cellspacing="0">
<tr><td align="left">
<h2 align="center">User Listing</h2>
<p>Listed below are the users matching your criteria. You can get
further detail about each one or perform other actions on them.</p>
</td></tr></table>
[% IF user_iterator.has_next -%]
[%- INCLUDE base_user::user_list( iterator = user_iterator ) -%]
[% ELSE -%]
<p align="center"><b>No users matched criteria.</b></p>
[% END -%]
</div>
|