-
Notifications
You must be signed in to change notification settings - Fork 11
/
autoform-cloudinary.html
54 lines (53 loc) · 1.31 KB
/
autoform-cloudinary.html
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<template name="afCloudinary">
<div class="afCloudinary">
{{#if url}}
<div class="afCloudinary-thumbnail">
<a href="{{url}}" target="_blank"><img src="{{url}}"></a>
</div>
<a href="#" class="js-remove">Remove</a>
{{else}}
<button
type="button">
Browse
</button>
{{/if}}
<input
name="file"
type="file"
class="cloudinary-fileupload"
data-cloudinary-field="image_id"
style="display: none"
accept="{{accept}}"/>
<input {{atts}}
type="hidden"
name="url"
value="{{url}}"/>
</div>
</template>
<template name="afCloudinary_bootstrap3">
<div class="afCloudinary">
{{#if url}}
<div class="afCloudinary-thumbnail">
<a href="{{url}}" target="_blank"><img src="{{url}}"></a>
</div>
<a href="#" class="js-remove"><span class="glyphicon glyphicon-remove"></span> Remove</a>
{{else}}
<button
type="button"
class="btn btn-default">
Browse
</button>
{{/if}}
<input
name="file"
type="file"
class="cloudinary-fileupload form-control"
data-cloudinary-field="image_id"
style="display: none"
accept="{{accept}}"/>
<input {{atts}}
type="hidden"
name="url"
value="{{url}}"/>
</div>
</template>