Партнерка на США и Канаду по недвижимости, выплаты в крипто
- 30% recurring commission
- Выплаты в USDT
- Вывод каждую неделю
- Комиссия до 5 лет за каждого referral
<ul>
<g:each var="p" in="${authority. people?}">
<li>${p}</li>
</g:each>
</ul>
</td>
</tr>
</tbody>
</table>
</div>
<div class="buttons">
<span class="button"><g:actionSubmit class="save" value="Update" /></span>
<span class="button"><g:actionSubmit class="delete" onclick="return confirm('Are you sure?');" value="Delete" /></span>
</div>
</g:form>
</div>
</body>
<%@ page import="soc. Role" %>
<head>
<meta name="layout" content="old_main" />
<title>Role List</title>
</head>
<body>
<div class="nav">
<span class="menuButton"><a class="home" href="${createLinkTo(dir:'/secret')}">Home</a></span>
<span class="menuButton"><g:link class="create" action="create">New Role</g:link></span>
</div>
<div class="body">
<h1>Role List</h1>
<g:if test="${flash. message}">
<div class="message">${flash. message}</div>
</g:if>
<div class="list">
<table>
<thead>
<tr>
<g:sortableColumn property="id" title="ID" />
<g:sortableColumn property="authority" title="soc. Role Name" />
<g:sortableColumn property="description" title="Description" />
<th> </th>
</tr>
</thead>
<tbody>
<g:each in="${authorityList}" status="i" var="authority">
<tr class="${(i % 2) == 0 ? 'odd' : 'even'}">
<td>${authority. id}</td>
<td>${authority. authority?.encodeAsHTML()}</td>
<td>${authority. description?.encodeAsHTML()}</td>
<td class="actionButtons">
<span class="actionButton">
<g:link action="show" id="${authority. id}">Show</g:link>
</span>
</td>
</tr>
</g:each>
</tbody>
</table>
</div>
<div class="paginateButtons">
<g:paginate total="${Role. count()}" />
</div>
</div>
</body>
<head>
<meta name="layout" content="old_main"/>
<title>Show Role</title>
</head>
<body>
<div class="nav">
<span class="menuButton"><a class="home" href="${createLinkTo(dir: '/secret')}">Home</a></span>
<span class="menuButton"><g:link class="list" action="list">Role List</g:link></span>
<span class="menuButton"><g:link class="create" action="create">New Role</g:link></span>
</div>
<div class="body">
<h1>Show Role</h1>
<g:if test="${flash. message}">
<div class="message">${flash. message}</div>
</g:if>
<div class="dialog">
<table>
<tbody>
<tr class="prop">
<td valign="top" class="name">ID:</td>
<td valign="top" class="value">${authority. id}</td>
</tr>
<tr class="prop">
<td valign="top" class="name">soc. Role Name:</td>
<td valign="top" class="value">${authority. authority}</td>
</tr>
<tr class="prop">
<td valign="top" class="name">Description:</td>
<td valign="top" class="value">${authority. description}</td>
</tr>
<tr class="prop">
<td valign="top" class="name">People:</td>
<td valign="top" class="value">${authority. people}</td>
</tr>
</tbody>
</table>
</div>
<div class="buttons">
<g:form>
<input type="hidden" name="id" value="${authority?.id}"/>
<span class="button"><g:actionSubmit class="edit" value="Edit"/></span>
<span class="button"><g:actionSubmit class="delete" onclick="return confirm('Are you sure?');"
value="Delete"/></span>
</g:form>
</div>
</div>
</body>
<!doctype html>
<html>
<head>
<meta name="layout" content="basic">
<title>Администраторская</title>
|
Из за большого объема этот материал размещен на нескольких страницах:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |


