source: extensions/TweetThis/admin.tpl @ 11516

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

button issue fixed

File size: 4.6 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
9    <table class="twitter_buttons">
10      <tr>
11        <td><label>
12          <img src="{$TWEET_PATH}images/tweeth.png"/>
13          <input type="radio" name="button_style" value="horizontal" {if $button_style == 'horizontal'}checked="checked"{/if}/>
14        </label></td>
15        <td><label>
16          <img src="{$TWEET_PATH}images/tweetv.png"/>
17          <input type="radio" name="button_style" value="vertical" {if $button_style == 'vertical'}checked="checked"{/if}/>
18        </label></td>
19        <td><label>
20          <img src="{$TWEET_PATH}images/tweetn.png"/>
21          <input type="radio" name="button_style" value="none" {if $button_style == 'none'}checked="checked"{/if}/>
22        </label></td>
23        <td>&nbsp;</td>
24      </tr>
25      <tr>
26        <td><label>
27          <img src="http://twitter-badges.s3.amazonaws.com/twitter-a.png"/>
28          <input type="radio" name="button_style" value="twitter-a" {if $button_style == 'twitter-a'}checked="checked"{/if}/>
29        </label></td>
30        <td><label>
31          <img src="http://twitter-badges.s3.amazonaws.com/t_logo-a.png"/>
32          <input type="radio" name="button_style" value="t_logo-a" {if $button_style == 't_logo-a'}checked="checked"{/if}/>
33        </label></td>
34        <td><label>
35          <img src="http://twitter-badges.s3.amazonaws.com/t_small-a.png"/>
36          <input type="radio" name="button_style" value="t_small-a" {if $button_style == 't_small-a'}checked="checked"{/if}/>
37        </label></td>
38        <td><label>
39          <img src="http://twitter-badges.s3.amazonaws.com/t_mini-a.png"/>
40          <input type="radio" name="button_style" value="t_mini-a" {if $button_style == 't_mini-a'}checked="checked"{/if}/>
41        </label></td>
42      </tr>
43      <tr>
44        <td><label>
45          <img src="http://twitter-badges.s3.amazonaws.com/twitter-b.png"/>
46          <input type="radio" name="button_style" value="twitter-b" {if $button_style == 'twitter-b'}checked="checked"{/if}/>
47        </label></td>
48        <td><label>
49          <img src="http://twitter-badges.s3.amazonaws.com/t_logo-b.png"/>
50          <input type="radio" name="button_style" value="t_logo-b" {if $button_style == 't_logo-b'}checked="checked"{/if}/>
51        </label></td>
52        <td><label>
53          <img src="http://twitter-badges.s3.amazonaws.com/t_small-b.png"/>
54          <input type="radio" name="button_style" value="t_small-b" {if $button_style == 't_small-b'}checked="checked"{/if}/>
55        </label></td>
56        <td><label>
57          <img src="http://twitter-badges.s3.amazonaws.com/t_mini-b.png"/>
58          <input type="radio" name="button_style" value="t_mini-b" {if $button_style == 't_mini-b'}checked="checked"{/if}/>
59        </label></td>
60      </tr>
61      <tr>
62        <td><label>
63          <img src="http://twitter-badges.s3.amazonaws.com/twitter-c.png"/>
64          <input type="radio" name="button_style" value="twitter-c" {if $button_style == 'twitter-c'}checked="checked"{/if}/>
65        </label></td>
66        <td><label>
67          <img src="http://twitter-badges.s3.amazonaws.com/t_logo-c.png"/>
68          <input type="radio" name="button_style" value="t_logo-c" {if $button_style == 't_logo-c'}checked="checked"{/if}/>
69        </label></td>
70        <td><label>
71          <img src="http://twitter-badges.s3.amazonaws.com/t_small-c.png"/>
72          <input type="radio" name="button_style" value="t_small-c" {if $button_style == 't_small-c'}checked="checked"{/if}/>
73        </label></td>
74        <td><label>
75          <img src="http://twitter-badges.s3.amazonaws.com/t_mini-c.png"/>
76          <input type="radio" name="button_style" value="t_mini-c" {if $button_style == 't_mini-c'}checked="checked"{/if}/>
77        </label></td>
78      </tr>
79     
80      <tr class="property">
81        <td colspan="2">
82          {'Button position on picture page'|@translate}
83        </td>
84        <td colspan="2">
85          <label><input type="radio" name="position" value="top" {if $position == 'top'}checked="checked"{/if}/> {'Top'|@translate}</label>
86          <label><input type="radio" name="position" value="bottom" {if $position == 'bottom'}checked="checked"{/if}/> {'Bottom'|@translate}</label>
87          <label><input type="radio" name="position" value="toolbar" {if $position == 'toolbar'}checked="checked"{/if}/> {'Toolbar'|@translate}</label>
88        </td>
89      </tr>
90      <tr class="submit">
91        <td colspan="4">
92          <input class="submit" type="submit" value="{'Submit'|@translate}" name="submit" />
93        </td>
94      </tr>
95    </table>
96
97</form>
Note: See TracBrowser for help on using the repository browser.