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 55 56 57 58 59 60 61 62 63 64 65 66 67 68
|
name: href
<a href ="{{ obj.attributes.url}}">{{ obj }}</a>
name: url
<a href="{{ obj.attributes.url or obj }}">{{ obj.attributes.url or obj }}</a>
name: nolinkurl
{{ obj.attributes.url }}
name: hyperbaseurl
name: hyperimage
<img src="{{ obj.attributes.url }}" />
name: hyperdef
<a name="{{ obj.attributes.category }}.{{ obj.attributes.name }}" >{{ obj }}</a>
name: hyperref
<a href="{{ obj.attributes.url }}#{{ obj.attributes.category }}.{{ obj.attributes.name}}" >{{ obj }}</a>
name: hyperlink
<a href="{{ obj.idref.label.url }}" >{{ obj }}</a>
name: hypertarget
<a name="{{ obj.id }}" >{{ obj }}</a>
name: phantomsection
<a name="{{ obj.id }}"></a>
name: texorpdfstring
{{ obj.attributes['tex'] }}
name: autoref
<a href="{{ obj.idref.label.url }}" >{{ obj.idref.label.captionName}} {{ obj.idref.label.ref }}</a>
name: Form
<form action="{{ obj.attributes.parameters.action }}" method="{{ obj.attributes.parameters.method }}" >{{ obj }}</form>
name: TextField
<label for="{{ obj.id }}" >{{ obj.attributes.label }}</label>
<input name="{{ obj.attributes.parameters.name or obj.attributes.label }}" id="{{ obj.id }}" />
name: CheckBox
<label for="{{ obj.id }}" >{{ obj.attributes.label }}</label>
<input type="checkbox" name="{{ obj.attributes.parameters.name or obj.attributes.label }}" id="{{ obj.id }}" />
name: ChoiceMenu
<label for="{{ obj.id }}" >{{ obj.attributes.label }}</label>
<select name="{{ obj.attributes.parameters.name or obj.attributes.label }}" id="{{ obj.id }}">
{% for choice in obj.attributes.choices %}
<option>{{ choice }}</option>
{% endfor %}
</select>
name: PushButton
<input type="button" name="{{ obj.attributes.parameters.name or obj.attributes.label}}" id="{{ obj.id }}" value="{{ obj.attributes.label }}" />
name: Submit
<input type="submit" name="{{ obj.attributes.parameters.name or obj.attributes.label}}" id="{{ obj.id }}" value="{{ obj.attributes.label }}" />
name: Reset
<input type="reset" name="{{ obj.attributes.parameters.name or obj.attributes.label}}" id="{{ obj.id }}" value="{{ obj.attributes.label }}" />
name: ref*
<span >{{ obj.idref.label.ref }}</span>
name: pageref*
*
|