source: extensions/GooglePlusOne/admin.tpl @ 27153

Last change on this file since 27153 was 19363, checked in by mistic100, 11 years ago

correct typo, load on footer

File size: 2.7 KB
Line 
1{combine_css path=$GPLUS1_PATH|@cat:"style.css"}
2
3<div class="titrePage">
4        <h2>Google+1</h2>
5</div>
6
7<form method="post" action="" class="properties" ENCTYPE="multipart/form-data"> 
8    <p><img src="{$GPLUS1_PATH}/images/logo.png"/></p>
9   
10    <table class="gplus1_buttons">
11      <tr class="property">
12        <td>
13          {'Button size'|@translate}
14        </td>
15        <td></td>
16      </tr>
17      <tr>
18        <td><label>
19          15px
20          <img src="{$GPLUS1_PATH}images/small.png"/>
21          <input type="radio" name="button_size" value="small" {if $button_size == 'small'}checked="checked"{/if}/>
22        </label></td>
23        <td><label>
24          20px
25          <img src="{$GPLUS1_PATH}images/medium.png"/>
26          <input type="radio" name="button_size" value="medium" {if $button_size == 'medium'}checked="checked"{/if}/>
27        </label></td>
28      </tr>
29      <tr>
30        <td><label>
31          24px
32          <img src="{$GPLUS1_PATH}images/standard.png"/>
33          <input type="radio" name="button_size" value="standard" {if $button_size == 'standard'}checked="checked"{/if}/>
34        </label></td>
35        <td><label>
36          60px
37          <img src="{$GPLUS1_PATH}images/tall.png"/>
38          <input type="radio" name="button_size" value="tall" {if $button_size == 'tall'}checked="checked"{/if}/>
39        </label></td>
40      </tr>
41     
42      <tr class="property">
43        <td>
44          {'Button position on picture page'|@translate}
45        </td>
46        <td>
47          <label><input type="radio" name="position" value="top" {if $position == 'top'}checked="checked"{/if}/> {'Top'|@translate}</label>
48          <label><input type="radio" name="position" value="bottom" {if $position == 'bottom'}checked="checked"{/if}/> {'Bottom'|@translate}</label>
49          <label><input type="radio" name="position" value="toolbar" {if $position == 'toolbar'}checked="checked"{/if}/> {'Toolbar'|@translate}</label>
50        </td>
51      </tr>
52      <tr class="property">
53        <td>
54          {'Annotation'|@translate}
55        </td>
56        <td>
57          <label><input type="radio" name="annotation" value="none" {if $annotation == 'none'}checked="checked"{/if}/> {'None'|@translate}</label>
58          <label><input type="radio" name="annotation" value="bubble" {if $annotation == 'bubble'}checked="checked"{/if}/> {'Bubble'|@translate}</label>
59          <label><input type="radio" name="annotation" value="inline" {if $annotation == 'inline'}checked="checked"{/if}/> {'Inline text'|@translate}</label>
60        </td>
61      </tr>
62     
63      <tr class="submit">
64        <td colspan="2">
65          <input class="submit" type="submit" value="{'Submit'|@translate}" name="submit" />
66        </td>
67      </tr>
68    </table>
69</form>
Note: See TracBrowser for help on using the repository browser.