source: extensions/SmartAlbums/template/admin.tpl @ 11376

Last change on this file since 11376 was 11376, checked in by mistic100, 13 years ago

Add event_handler on 'login_success' and 'invalidate_user_cache' to regenerate SmartAlbums content

File size: 1.1 KB
Line 
1<div class="titrePage">
2        <h2>SmartAlbums</h2>
3</div>
4
5<form method="post" action="" class="properties" ENCTYPE="multipart/form-data"> 
6        <fieldset>
7                <legend>{'Configuration'|@translate}</legend>     
8                <ul>                   
9                        <li>
10                                <span class="property">{'Update albums on file upload'|@translate}</span>
11                                <label><input type="radio" name="update_on_upload" value="true" {if $update_on_upload == 'true'}checked="checked"{/if}/> {'Yes'|@translate}</label>
12                                <label><input type="radio" name="update_on_upload" value="false" {if $update_on_upload == 'false'}checked="checked"{/if}/> {'No'|@translate}</label>
13                        </li>
14                        <li>
15                                <span class="property">{'Update albums when an admin logins'|@translate}</span>
16                                <label><input type="radio" name="update_on_login" value="true" {if $update_on_login == 'true'}checked="checked"{/if}/> {'Yes'|@translate}</label>
17                                <label><input type="radio" name="update_on_login" value="false" {if $update_on_login == 'false'}checked="checked"{/if}/> {'No'|@translate}</label>
18                        </li>   
19                </ul>
20        </fieldset>
21               
22        <p><input class="submit" type="submit" value="{'Submit'|@translate}" name="submit" /></p>
23</form>
Note: See TracBrowser for help on using the repository browser.