diff options
author | plegall <plg@piwigo.org> | 2007-02-14 22:53:02 +0000 |
---|---|---|
committer | plegall <plg@piwigo.org> | 2007-02-14 22:53:02 +0000 |
commit | aabdb3e9295474760b2d3fd5d76d2c235970fe16 (patch) | |
tree | a2ced85a4923136c28fd963f52b28f8348cd830f /template/yoga | |
parent | 58a359e3c17b711be1663985e5e7801407eb50ed (diff) |
New: history logs high quality access via action.php. A new column
#history.is_high was added. Filter was added on administration history
detail view.
Modification: function get_sql_condition_FandF was slightly refactored for
presentation improvement.
git-svn-id: http://piwigo.org/svn/trunk@1817 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'template/yoga')
-rw-r--r-- | template/yoga/admin/history.tpl | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/template/yoga/admin/history.tpl b/template/yoga/admin/history.tpl index 746890ab8..f0d364d6f 100644 --- a/template/yoga/admin/history.tpl +++ b/template/yoga/admin/history.tpl @@ -49,6 +49,39 @@ </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> @@ -68,6 +101,7 @@ <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> @@ -79,6 +113,14 @@ <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> |