source: extensions/TumblrShare/admin.tpl @ 19394

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

allow to choose shared size, compatible with 'question_mark_in_url'=false

File size: 3.2 KB
RevLine 
[19361]1{combine_css path=$TUMBLR_PATH|@cat:"style.css"}
2
3<div class="titrePage">
4        <h2>tumblr.share</h2>
5</div>
6
7<form method="post" action="" class="properties" ENCTYPE="multipart/form-data"> 
8    <p><img src="{$TUMBLR_PATH}/logo.png"/></p>
9   
10    <table class="tumblr_buttons">
11      <tr class="property">
12        <td>
13          {'Button size'|@translate}
14        </td>
15        <td></td>
16      </tr>
17      <tr>
18        <td><label>
19          <input type="radio" name="type" value="share_1" {if $type == 'share_1'}checked="checked"{/if}/>
20          <img src="http://platform.tumblr.com/v1/share_1.png"/>
21        </label></td>
22        <td><label>
23          <input type="radio" name="type" value="share_1T" {if $type == 'share_1T'}checked="checked"{/if}/>
24          <img src="http://platform.tumblr.com/v1/share_1T.png"/>
25        </label></td>
26      </tr>
27      <tr>
28        <td><label>
29          <input type="radio" name="type" value="share_2" {if $type == 'share_2'}checked="checked"{/if}/>
30          <img src="http://platform.tumblr.com/v1/share_2.png"/>
31        </label></td>
32        <td><label>
33          <input type="radio" name="type" value="share_2T" {if $type == 'share_2T'}checked="checked"{/if}/>
34          <img src="http://platform.tumblr.com/v1/share_2T.png"/>
35        </label></td>
36      </tr>
37      <tr>
38        <td><label>
39          <input type="radio" name="type" value="share_3" {if $type == 'share_3'}checked="checked"{/if}/>
40          <img src="http://platform.tumblr.com/v1/share_3.png"/>
41        </label></td>
42        <td><label>
43          <input type="radio" name="type" value="share_3T" {if $type == 'share_3T'}checked="checked"{/if}/>
44          <img src="http://platform.tumblr.com/v1/share_3T.png"/>
45        </label></td>
46      </tr>
47      <tr>
48        <td><label>
49          <input type="radio" name="type" value="share_4" {if $type == 'share_4'}checked="checked"{/if}/>
50          <img src="http://platform.tumblr.com/v1/share_4.png"/>
51        </label></td>
52        <td><label>
53          <input type="radio" name="type" value="share_4T" {if $type == 'share_4T'}checked="checked"{/if}/>
54          <img src="http://platform.tumblr.com/v1/share_4T.png"/>
55        </label></td>
56      </tr>
57     
58      <tr class="property">
59        <td>
60          {'Button position on picture page'|@translate}
61        </td>
62        <td>
63          <label><input type="radio" name="position" value="top" {if $position == 'top'}checked="checked"{/if}/> {'Top'|@translate}</label>
64          <label><input type="radio" name="position" value="bottom" {if $position == 'bottom'}checked="checked"{/if}/> {'Bottom'|@translate}</label>
65          <label><input type="radio" name="position" value="toolbar" {if $position == 'toolbar'}checked="checked"{/if}/> {'Toolbar'|@translate}</label>
66        </td>
67      </tr>
68     
[19394]69      <tr class="property">
70        <td>
71          {'Shared picture size'|@translate}
72        </td>
73        <td>
74          {html_options name="img_size" values=$img_sizes output=$img_sizes|translate selected=$img_size}
75        </td>
76      </tr>
77     
[19361]78      <tr class="submit">
79        <td colspan="2" style="text-align:center;">
80          <input class="submit" type="submit" value="{'Submit'|@translate}" name="submit" />
81        </td>
82      </tr>
83    </table>
84</form>
Note: See TracBrowser for help on using the repository browser.