aboutsummaryrefslogtreecommitdiffstats
path: root/template/yoga/admin/history.tpl
blob: f0d364d6ffa7717fb405aa367fef428576f2bd37 (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
<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}</h2>
</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>

  <ul>
    <li><label></label></li>
    <li></li>
  </ul>

  <label>
    {lang:Pictures}
    <select name="pictures">
      <!-- BEGIN pictures_option -->
      <option
        value="{pictures_option.VALUE}"
        {pictures_option.SELECTED}
      >
        {pictures_option.CONTENT}
      </option>
      <!-- END pictures_option -->
    </select>
  </label>

  <label>
    {lang:High quality}
    <select name="high">
      <!-- BEGIN high_option -->
      <option
        value="{high_option.VALUE}"
        {high_option.SELECTED}
      >
        {high_option.CONTENT}
      </option>
      <!-- END high_option -->
    </select>
  </label>

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

<h3>{L_DATE_TITLE}</h3>

<!-- 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:high quality}</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>
  <!-- BEGIN high -->
      <img src="{themeconf:icon_dir}/check.png" alt="{lang:yes}">
  <!-- END high -->
  <!-- BEGIN no_high -->
      <img src="{themeconf:icon_dir}/uncheck.png" alt="{lang:no}">
  <!-- END no_high -->
    </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 -->