source: extensions/TweetThis/admin.tpl @ 11419

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

first commit

File size: 4.0 KB
Line 
1{combine_css path=$TWEET_PATH|@cat:"style.css"}
2
3<div class="titrePage">
4        <h2>TweetThis</h2>
5</div>
6
7<form method="post" action="" class="properties" ENCTYPE="multipart/form-data"> 
8        <fieldset>
9                <legend>{'Configuration'|@translate}</legend>     
10   
11    <ul>
12      <li>
13     
14      <table class="twitter_buttons">
15        <tr>
16          <td><label>
17            <img src="http://twitter-badges.s3.amazonaws.com/twitter-a.png"/>
18            <input type="radio" name="button_style" value="twitter-a" {if $button_style == 'twitter-a'}checked="checked"{/if}/>
19          </label></td>
20          <td><label>
21            <img src="http://twitter-badges.s3.amazonaws.com/t_logo-a.png"/>
22            <input type="radio" name="button_style" value="t_logo-a" {if $button_style == 't_logo-a'}checked="checked"{/if}/>
23          </label></td>
24          <td><label>
25            <img src="http://twitter-badges.s3.amazonaws.com/t_small-a.png"/>
26            <input type="radio" name="button_style" value="t_small-a" {if $button_style == 't_small-a'}checked="checked"{/if}/>
27          </label></td>
28          <td><label>
29            <img src="http://twitter-badges.s3.amazonaws.com/t_mini-a.png"/>
30            <input type="radio" name="button_style" value="t_mini-a" {if $button_style == 't_mini-a'}checked="checked"{/if}/>
31          </label></td>
32        </tr>
33        <tr>
34          <td><label>
35            <img src="http://twitter-badges.s3.amazonaws.com/twitter-b.png"/>
36            <input type="radio" name="button_style" value="twitter-b" {if $button_style == 'twitter-b'}checked="checked"{/if}/>
37          </label></td>
38          <td><label>
39            <img src="http://twitter-badges.s3.amazonaws.com/t_logo-b.png"/>
40            <input type="radio" name="button_style" value="t_logo-b" {if $button_style == 't_logo-b'}checked="checked"{/if}/>
41          </label></td>
42          <td><label>
43            <img src="http://twitter-badges.s3.amazonaws.com/t_small-b.png"/>
44            <input type="radio" name="button_style" value="t_small-b" {if $button_style == 't_small-b'}checked="checked"{/if}/>
45          </label></td>
46          <td><label>
47            <img src="http://twitter-badges.s3.amazonaws.com/t_mini-b.png"/>
48            <input type="radio" name="button_style" value="t_mini-b" {if $button_style == 't_mini-b'}checked="checked"{/if}/>
49          </label></td>
50        </tr>
51        <tr>
52          <td><label>
53            <img src="http://twitter-badges.s3.amazonaws.com/twitter-c.png"/>
54            <input type="radio" name="button_style" value="twitter-c" {if $button_style == 'twitter-c'}checked="checked"{/if}/>
55          </label></td>
56          <td><label>
57            <img src="http://twitter-badges.s3.amazonaws.com/t_logo-c.png"/>
58            <input type="radio" name="button_style" value="t_logo-c" {if $button_style == 't_logo-c'}checked="checked"{/if}/>
59          </label></td>
60          <td><label>
61            <img src="http://twitter-badges.s3.amazonaws.com/t_small-c.png"/>
62            <input type="radio" name="button_style" value="t_small-c" {if $button_style == 't_small-c'}checked="checked"{/if}/>
63          </label></td>
64          <td><label>
65            <img src="http://twitter-badges.s3.amazonaws.com/t_mini-c.png"/>
66            <input type="radio" name="button_style" value="t_mini-c" {if $button_style == 't_mini-c'}checked="checked"{/if}/>
67          </label></td>
68        </tr>
69      </table>
70     
71    </li>
72   
73    <li>
74      <span class="property">{'Link position'|@translate}</span>
75      <label><input type="radio" name="position" value="top" {if $position == 'top'}checked="checked"{/if}/> {'Top'|@translate}</label>
76      <label><input type="radio" name="position" value="bottom" {if $position == 'bottom'}checked="checked"{/if}/> {'Bottom'|@translate}</label>
77      <label><input type="radio" name="position" value="toolbar" {if $position == 'toolbar'}checked="checked"{/if}/> {'Toolbar'|@translate}</label>
78    </li>
79  </ul>
80 
81        </fieldset>
82               
83        <p><input class="submit" type="submit" value="{'Submit'|@translate}" name="submit" /></p>
84</form>
Note: See TracBrowser for help on using the repository browser.