1 <html xmlns="http://www.w3.org/1999/xhtml" metal:use-macro="here/main_template/macros/master">
4 <meta http-equiv="content-type" content="text/html;charset=UTF-8" />
5 <title>Pending Members</title>
8 <body tal:omit-tag="" metal:fill-slot="main_no_tabs" i18n:domain="plinn">
9 <h2 i18n:translate="">Review members registration</h2>
10 <form action="." method="post" tal:attributes="action string:${portal_url}/member_registration_modify">
11 <table class="listing" cellspacing="0">
13 <th i18n:translate="">Name</th>
14 <th i18n:translate="">Email</th>
17 <tbody tal:repeat="m python:mtool.getMembers([ b.getId for b in here.portal_catalog(review_state='m_pending') ])" tal:omit-tag="">
18 <tr tal:attributes="class python:repeat['m'].odd() and 'odd' or 'even'">
20 <input type="hidden" name="members.id:records" tal:attributes="value m/id" />
22 <input type="checkbox" name="members.checked:records" checked="checked" tal:attributes="value m/id" />
23 <span tal:replace="python:m.getMemberFullName(nameBefore=0)">Benoît PIN</span>
27 <a href="." tal:attributes="href string:mailto:${m/email}" tal:content="m/email">email</a>
30 <input type="submit" name="members.reject:records" value="Reject" i18n:attributes="value" />
35 <p><input type="submit" name="register" value="Register" i18n:attributes="value" /></p>