Added Operations templates
This commit is contained in:
parent
622aec0e1b
commit
0e0e775dd0
5 changed files with 200 additions and 0 deletions
|
|
@ -0,0 +1,55 @@
|
|||
#PBtmpl0000000000000051
|
||||
<tmpl_var displayTitle>
|
||||
|
||||
<tmpl_if profile.message>
|
||||
<tmpl_var profile.message>
|
||||
</tmpl_if>
|
||||
|
||||
<tmpl_var profile.form.header>
|
||||
<tmpl_var profile.form.hidden>
|
||||
<table >
|
||||
<tmpl_loop profile.form.elements>
|
||||
<tr>
|
||||
<td class="tableHeader" valign="top" colspan="2">
|
||||
<tmpl_var profile.form.category>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tmpl_loop profile.form.category.loop>
|
||||
<tr>
|
||||
<td class="formDescription" valign="top">
|
||||
<tmpl_var profile.form.element.label>
|
||||
</td>
|
||||
<td class="tableData">
|
||||
<tmpl_var profile.form.element>
|
||||
<tmpl_if profile.form.element.subtext>
|
||||
<span class="formSubtext">
|
||||
<tmpl_var profile.form.element.subtext>
|
||||
</span>
|
||||
</tmpl_if>
|
||||
</td>
|
||||
</tr>
|
||||
</tmpl_loop>
|
||||
</tmpl_loop>
|
||||
<tmpl_loop create.form.profile>
|
||||
<tr>
|
||||
<td class="formDescription" valign="top"><tmpl_var profile.formElement.label></td>
|
||||
<td class="tableData"><tmpl_var profile.formElement></td>
|
||||
</tr>
|
||||
</tmpl_loop>
|
||||
<tr>
|
||||
<td class="formDescription" valign="top"></td>
|
||||
<td class="tableData">
|
||||
<tmpl_var profile.form.submit>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<tmpl_var profile.form.footer>
|
||||
|
||||
<div class="accountOptions">
|
||||
<ul>
|
||||
<tmpl_loop profile.accountOptions>
|
||||
<li><tmpl_var options.display></li>
|
||||
</tmpl_loop>
|
||||
</ul>
|
||||
</div>
|
||||
|
|
@ -0,0 +1,55 @@
|
|||
#PBtmpl0000000000000050
|
||||
<tmpl_var displayTitle>
|
||||
|
||||
<table width="100%" cellspacing="1" cellpadding="2" border="0">
|
||||
<tr>
|
||||
<td class="tableHeader">
|
||||
<tmpl_var message.subject.label>
|
||||
</td>
|
||||
<td class="tableHeader">
|
||||
<tmpl_var message.status.label>
|
||||
</td>
|
||||
<td class="tableHeader">
|
||||
<tmpl_var message.dateOfEntry.label>
|
||||
</td>
|
||||
</tr>
|
||||
<tmpl_if message.noresults>
|
||||
<tr>
|
||||
<td class="tableData">
|
||||
<tmpl_var message.noresults>
|
||||
</td>
|
||||
<td class="tableData">
|
||||
|
||||
</td>
|
||||
<td class="tableData">
|
||||
|
||||
</td>
|
||||
</tr>
|
||||
<tmpl_else>
|
||||
<tmpl_loop message.loop>
|
||||
<tr>
|
||||
<td class="tableData">
|
||||
<tmpl_var message.subject>
|
||||
</td>
|
||||
<td class="tableData">
|
||||
<tmpl_var message.status>
|
||||
</td>
|
||||
<td class="tableData">
|
||||
<tmpl_var message.dateOfEntry>
|
||||
</td>
|
||||
</tr>
|
||||
</tmpl_loop>
|
||||
</tmpl_if>
|
||||
</table>
|
||||
<tmpl_if message.multiplePages>
|
||||
<div class="pagination">
|
||||
<tmpl_var message.previousPage> · <tmpl_var message.pageList> · <tmpl_var message.nextPage>
|
||||
</div>
|
||||
</tmpl_if>
|
||||
<div class="accountOptions">
|
||||
<ul>
|
||||
<tmpl_loop message.accountOptions>
|
||||
<li><tmpl_var options.display></li>
|
||||
</tmpl_loop>
|
||||
</ul>
|
||||
</div>
|
||||
|
|
@ -0,0 +1,49 @@
|
|||
#PBtmpl0000000000000052
|
||||
<tmpl_var displayTitle>
|
||||
|
||||
<table>
|
||||
<tmpl_loop profile.elements>
|
||||
|
||||
<tmpl_if profile.category>
|
||||
<tr>
|
||||
<td colspan="2"> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="2" class="tableHeader">
|
||||
<tmpl_var profile.category>
|
||||
</td>
|
||||
</tr>
|
||||
<tmpl_else>
|
||||
<tr>
|
||||
<td class="tableCategory">
|
||||
<tmpl_var profile.label>
|
||||
</td>
|
||||
<td class="tableData">
|
||||
<tmpl_var profile.value>
|
||||
</td>
|
||||
</tr>
|
||||
</tmpl_if>
|
||||
|
||||
</tmpl_loop>
|
||||
</table>
|
||||
<div class="accountOptions">
|
||||
<ul>
|
||||
<tmpl_loop profile.accountOptions>
|
||||
<li><tmpl_var options.display></li>
|
||||
</tmpl_loop>
|
||||
</ul>
|
||||
</div>
|
||||
~~~
|
||||
<style type="text/css">
|
||||
.tableHeader {
|
||||
background-color:#F0F0F0;
|
||||
border-bottom:solid gray 1px;
|
||||
font-weight:bold;
|
||||
}
|
||||
.tableCategory {
|
||||
background-color:#F0F0F0;
|
||||
}
|
||||
.tableData {
|
||||
border-bottom:solid #F0F0F0 1px;
|
||||
}
|
||||
</style>
|
||||
|
|
@ -0,0 +1,34 @@
|
|||
#PBtmpl0000000000000014
|
||||
<h2>
|
||||
<tmpl_var title>
|
||||
</h2>
|
||||
|
||||
|
||||
<tmpl_if recover.message>
|
||||
<tmpl_var recover.message>
|
||||
</tmpl_if>
|
||||
|
||||
<tmpl_var recover.form.header>
|
||||
<tmpl_var recover.form.hidden>
|
||||
<table>
|
||||
<tr>
|
||||
<td class="formDescription" valign="top"><tmpl_var recover.form.email.label></td>
|
||||
<td class="tableData"><tmpl_var recover.form.email></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="formDescription" valign="top"></td>
|
||||
<td class="tableData"><tmpl_var recover.form.submit></td>
|
||||
</tr>
|
||||
</table>
|
||||
<tmpl_var recover.form.footer>
|
||||
|
||||
|
||||
<div class="accountOptions">
|
||||
<ul>
|
||||
<tmpl_if anonymousRegistration.isAllowed>
|
||||
<li><a href="<tmpl_var createAccount.url>"><tmpl_var createAccount.label></a></li>
|
||||
</tmpl_if>
|
||||
<li><a href="<tmpl_var login.url>"><tmpl_var login.label></a></li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
|
@ -0,0 +1,7 @@
|
|||
#PBtmpl0000000000000053
|
||||
<tmpl_if batchDescription>
|
||||
Batch: <tmpl_var batchDescription>
|
||||
</tmpl_if>
|
||||
|
||||
<tmpl_var message><br />
|
||||
<tmpl_var codeForm>
|
||||
Loading…
Add table
Add a link
Reference in a new issue