source: extensions/SmartAlbums/admin/template/config.tpl @ 19446

Last change on this file since 19446 was 19446, checked in by mistic100, 11 years ago
  • add regex for phot name, author
  • add dimensions filter
  • rewrite javascript algorithms
  • add auto update on timeout (default 3 days)
  • display photos count on plugin albums list
File size: 1.8 KB
Line 
1{html_head}{literal}
2<style type="text/css">
3.showInfo {
4  position:static;
5  display:inline-block;
6  padding:1px 6px !important;
7  width:auto;
8  font-size:0.8em;
9  line-height:1.2em;
10}
11</style>
12{/literal}{/html_head}
13
14{footer_script require="jquery"}
15jQuery(".showInfo").tipTip({ldelim}
16    delay: 0,
17    fadeIn: 200,
18    fadeOut: 200,
19    maxWidth: '300px',
20    defaultPosition:"right"
21  });
22{/footer_script}
23
24<div class="titrePage">
25  <h2>SmartAlbums</h2>
26</div>
27
28<form method="post" action="" class="properties"> 
29  <fieldset id="commentsConf">
30    <ul>
31      <li>
32        <label>
33          <input type="checkbox" name="update_on_upload" value="true" {if $update_on_upload}checked="checked"{/if}/>
34          <b>{'Update albums on file upload'|@translate}</b>
35          <a class="showInfo" title="{'can cause slowdowns'|@translate}">i</a>
36        </label>
37      </li>
38      <li>
39        <label>
40          <input type="checkbox" name="update_on_date" value="true" {if $update_on_date}checked="checked"{/if}/>
41          {assign var=input value='<input type="text" name="update_timeout" size="2" value="'|cat:$update_timeout|cat:'"/>'}
42          <b>{'Update albums every %s days'|@translate|sprintf:$input}</b>
43        </label>
44      </li>
45      <li>
46        <label>
47          <input type="checkbox" name="smart_is_forbidden" value="true" {if $smart_is_forbidden}checked="checked"{/if}/>
48          <b>{'Exclude SmartAlbums from permissions management'|@translate}</b>
49          <a class="showInfo" title="{'SmartAlbums are considered private for everyone, and a user can see it\'s content only if available in another album he has access to.'|@translate}">i</a>
50        </label>
51      </li>
52    </ul>
53  </fieldset>
54   
55  <p class="formButtons"><input class="submit" type="submit" value="{'Submit'|@translate}" name="submit" /></p>
56</form>
Note: See TracBrowser for help on using the repository browser.