aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/adm/style/acp_inactive.html
blob: 2e17bea47d72e95be3bbb37339b0992941b5bcfc (plain)
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<!-- INCLUDE overall_header.html -->

<a id="maincontent"></a>

<h1>{L_INACTIVE_USERS}</h1>

<p>{L_INACTIVE_USERS_EXPLAIN}</p>

<form id="inactive" method="post" action="{U_ACTION}">

<!-- IF .pagination -->
<div class="pagination">
	<!-- INCLUDE pagination.html -->
</div>
<!-- ENDIF -->

<table class="table1 zebra-table">
<thead>
<tr>
	<th>{L_USERNAME}</th>
	<th>{L_EMAIL}</th>
	<th>{L_JOINED}</th>
	<th>{L_INACTIVE_DATE}</th>
	<th>{L_LAST_VISIT}</th>
	<th>{L_INACTIVE_REASON}</th>
	<th>{L_MARK}</th>
</tr>
</thead>
<tbody>
<!-- BEGIN inactive -->
	<tr>
		<td style="vertical-align: top;">
			{inactive.USERNAME_FULL}
			<!-- IF inactive.POSTS --><br />{L_POSTS}{L_COLON} <strong>{inactive.POSTS}</strong> [<a href="{inactive.U_SEARCH_USER}">{L_SEARCH_USER_POSTS}</a>]<!-- ENDIF -->
		</td>
		<td style="vertical-align: top;">{inactive.USER_EMAIL}</td>
		<td style="vertical-align: top;">{inactive.JOINED}</td>
		<td style="vertical-align: top;">{inactive.INACTIVE_DATE}</td>
		<td style="vertical-align: top;">{inactive.LAST_VISIT}</td>
		<td style="vertical-align: top;">
			{inactive.REASON}
			<!-- IF inactive.REMINDED --><br />{inactive.REMINDED_EXPLAIN}<!-- ENDIF -->
		</td>
		<td>&nbsp;<input type="checkbox" class="radio" name="mark[]" value="{inactive.USER_ID}" />&nbsp;</td>
	</tr>
<!-- BEGINELSE -->
	<tr>
		<td colspan="6" style="text-align: center;">{L_NO_INACTIVE_USERS}</td>
	</tr>
<!-- END inactive -->
</tbody>
</table>

<fieldset class="display-options">
	{L_DISPLAY_LOG}{L_COLON} &nbsp;{S_LIMIT_DAYS}&nbsp;{L_SORT_BY}{L_COLON} {S_SORT_KEY} {S_SORT_DIR}<!-- IF .pagination -->&nbsp;{L_USERS_PER_PAGE}{L_COLON} <input class="inputbox autowidth" type="number" name="users_per_page" id="users_per_page" min="0" max="999" value="{USERS_PER_PAGE}" /><!-- ENDIF -->
	<input class="button2" type="submit" value="{L_GO}" name="sort" />
</fieldset>

<hr />

<!-- IF .pagination -->
	<div class="pagination">
		<!-- INCLUDE pagination.html -->
	</div>
<!-- ENDIF -->

<fieldset class="quick">
	<select name="action">{S_INACTIVE_OPTIONS}</select>
	<input class="button2" type="submit" name="submit" value="{L_SUBMIT}" />
	<p class="small"><a href="#" onclick="marklist('inactive', 'mark', true); return false;">{L_MARK_ALL}</a> &bull; <a href="#" onclick="marklist('inactive', 'mark', false); return false;">{L_UNMARK_ALL}</a></p>
	{S_FORM_TOKEN}
</fieldset>

</form>

<!-- INCLUDE overall_footer.html -->