diff options
author | plegall <plg@piwigo.org> | 2007-02-20 23:40:02 +0000 |
---|---|---|
committer | plegall <plg@piwigo.org> | 2007-02-20 23:40:02 +0000 |
commit | 3b46143435b528684d52772039540273bbcea52b (patch) | |
tree | 69c0319a2dc150ba6a4aabd9178f3eb4c47b4e10 /template/yoga/admin/history.tpl | |
parent | ed97ed33d37db4f1196c48d51c1c7f8cbe8cb9ce (diff) |
New: non picture files are now logged in history when downloaded. The
history filter was redesigned: #history.is_high replaced by
#history.image_type = high. The filter is simpler.
git-svn-id: http://piwigo.org/svn/trunk@1844 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'template/yoga/admin/history.tpl')
-rw-r--r-- | template/yoga/admin/history.tpl | 45 |
1 files changed, 8 insertions, 37 deletions
diff --git a/template/yoga/admin/history.tpl b/template/yoga/admin/history.tpl index 697c37df5..43b1440ae 100644 --- a/template/yoga/admin/history.tpl +++ b/template/yoga/admin/history.tpl @@ -49,36 +49,14 @@ </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} + {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 high_option --> + <!-- END types_option --> </select> </label> @@ -101,7 +79,7 @@ <th>{lang:user}</th> <th>{lang:IP}</th> <th>{lang:image}</th> - <th>{lang:high quality}</th> + <th>{lang:Element type}</th> <th>{lang:section}</th> <th>{lang:category}</th> <th>{lang:tags}</th> @@ -113,14 +91,7 @@ <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.TYPE}</td> <td>{detail.SECTION}</td> <td>{detail.CATEGORY}</td> <td>{detail.TAGS}</td> |