Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/webapp/polls/templates/mustache/option_image_thumbnail.html
blob: efb44b63cc06d8e1e5a34161757d69b06224dab1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<!-- Template: Field Image option thumbnail -->
<script type="text/x-mustache-template" name="field_option_image_thumbnail">
    <div class="span3 WFieldImageOption_container well well-small" style="margin: 10px;">
        <span class="pull-right">
            <a href="#" class="WFieldImageOptions_remove_button btn btn-danger">
                <i class="icon-trash icon-white"></i>
            </a>
        </span>
        <label>
            <b>ID</b>: <span class="draggable"><i class="icon-move"></i>[[ id ]]</span>
        </label><br />
        <center>
            <input type="hidden" name="groups.[[ group_order ]].fields.[[ field_order ]].options.[[ id ]].type" value="img_input">
            <input type="hidden" name="groups.[[ group_order ]].fields.[[ field_order ]].options.[[ id ]].img_name" value="[[ img_name ]]" />
            <div class="img_container"></div>
            <input
                class="input-medium"
                type="text"
                name="groups.[[ group_order ]].fields.[[ field_order ]].options.[[ id ]].text"
                value="[[ text ]]"
                placeholder="(texto opcional)" />
            <br />
            <b>Peso</b>:
            <input
                class="input-small"
                type="text"
                name="groups.[[ group_order ]].fields.[[ field_order ]].options.[[ id ]].weight"
                value="[[ weight ]]"
                placeholder="peso" />
        </center>
    </div>
</script>