aboutsummaryrefslogtreecommitdiffstats
path: root/template/yoga/admin/history.tpl
blob: 87058681f4b00920c9bfd0b7152544af85b230c3 (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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
<div class="titrePage">
  <ul class="categoryActions">
    <li>
      <a
        href="{U_HELP}"
        onclick="popuphelp(this.href); return false;"
        title="{lang:Help}"
      >
        <img src="{themeconf:icon_dir}/help.png" class="button" alt="(?)">
      </a>
    </li>
  </ul>
  <h2>{lang:History} {TABSHEET_TITLE}</h2>
  {TABSHEET}
</div>

<form class="filter" method="post" name="filter" action="{F_ACTION}">
<fieldset>
  <legend>{lang:Filter}</legend>
  <ul>
    <li><label>{lang:search_date_from}</label></li>
    <li>
      <select name="start_day">
        <!-- BEGIN start_day -->
        <option {start_day.SELECTED} value="{start_day.VALUE}">{start_day.OPTION}</option>
        <!-- END start_day -->
      </select>
      <select name="start_month">
        <!-- BEGIN start_month -->
        <option {start_month.SELECTED} value="{start_month.VALUE}">{start_month.OPTION}</option>
        <!-- END start_month -->
      </select>
      <input name="start_year" value="{START_YEAR}" type="text" size="4" maxlength="4" >
    </li>
  </ul>
  <ul>
    <li><label>{lang:search_date_to}</label></li>
    <li>
      <select name="end_day">
        <!-- BEGIN end_day -->
        <option {end_day.SELECTED} value="{end_day.VALUE}">{end_day.OPTION}</option>
        <!-- END end_day -->
      </select>
      <select name="end_month">
        <!-- BEGIN end_month -->
        <option {end_month.SELECTED} value="{end_month.VALUE}">{end_month.OPTION}</option>
        <!-- END end_month -->
      </select>
      <input name="end_year" value="{END_YEAR}" type="text" size="4" maxlength="4" >
    </li>
  </ul>

  <label>
    {lang:Element type}
    <select name="types[]" multiple="multiple" size="4">
      <!-- BEGIN types_option -->
      <option value="{types_option.VALUE}" {types_option.SELECTED}>
        {types_option.CONTENT}
      </option>
      <!-- END types_option -->
    </select>
  </label>

  <label>
    {lang:User}
    <select name="user">
      <!-- BEGIN user_option -->
      <option value="{user_option.VALUE}" {user_option.SELECTED}>
        {user_option.CONTENT}
      </option>
      <!-- END user_option -->
    </select>
  </label>

  <label>
    {lang:Image id}
    <input name="image_id" value="{IMAGE_ID}" type="text" size="5">
  </label>

  <label>
    {lang:File name}
    <input name="filename" value="{FILENAME}" type="text">
  </label>

  <input class="submit" type="submit" name="submit" value="{lang:submit}" />
</fieldset>
</form>

<!-- BEGIN summary -->
<fieldset>
  <legend>{lang:Summary}</legend>

  <ul>
    <li>{summary.NB_LINES}</li>
    <li>{summary.FILESIZE}</li>
    <li>
      {summary.USERS}
      <ul>
        <li>{summary.MEMBERS}</li>
        <li>{summary.GUESTS}</li>
      </ul>
    </li>
  </ul>
</fieldset>
<!-- END summary -->

<!-- BEGIN navigation -->
<div class="admin">
{navigation.NAVBAR}
</div>
<!-- END navigation -->

<table class="table2" id="detailedStats">
  <tr class="throw">
    <th>{lang:date}</th>
    <th>{lang:time}</th>
    <th>{lang:user}</th>
    <th>{lang:IP}</th>
    <th>{lang:image}</th>
    <th>{lang:Element type}</th>
    <th>{lang:section}</th>
    <th>{lang:category}</th>
    <th>{lang:tags}</th>
  </tr>
<!-- BEGIN detail -->
  <tr class="{detail.T_CLASS}">
    <td class="hour">{detail.DATE}</td>
    <td class="hour">{detail.TIME}</td>
    <td>{detail.USER}</td>
    <td>{detail.IP}</td>
    <td>{detail.IMAGE}</td>
    <td>{detail.TYPE}</td>
    <td>{detail.SECTION}</td>
    <td>{detail.CATEGORY}</td>
    <td>{detail.TAGS}</td>
  </tr>
<!-- END detail -->
</table>

<!-- BEGIN navigation -->
<div class="admin">
{navigation.NAVBAR}
</div>
<!-- END navigation -->