client/templates/nodeeditor_readonly.html
author rougeronj
Sat, 18 Apr 2015 17:14:27 +0200
changeset 420 22393cbf4467
child 434 0d5998b32a7c
permissions -rw-r--r--
export the templates of nodeeditor to html files
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
420
22393cbf4467 export the templates of nodeeditor to html files
rougeronj
parents:
diff changeset
     1
<h2>
22393cbf4467 export the templates of nodeeditor to html files
rougeronj
parents:
diff changeset
     2
	<span class="Rk-CloseX">&times;</span>
22393cbf4467 export the templates of nodeeditor to html files
rougeronj
parents:
diff changeset
     3
	<% if (options.show_node_tooltip_color) { %>
22393cbf4467 export the templates of nodeeditor to html files
rougeronj
parents:
diff changeset
     4
		<span class="Rk-UserColor" style="background: <%-node.color%>;"></span>
22393cbf4467 export the templates of nodeeditor to html files
rougeronj
parents:
diff changeset
     5
	<% } %>
22393cbf4467 export the templates of nodeeditor to html files
rougeronj
parents:
diff changeset
     6
	<span class="Rk-Display-Title">
22393cbf4467 export the templates of nodeeditor to html files
rougeronj
parents:
diff changeset
     7
		<% if (node.uri) { %>
22393cbf4467 export the templates of nodeeditor to html files
rougeronj
parents:
diff changeset
     8
			<a href="<%-node.uri%>" target="_blank">
22393cbf4467 export the templates of nodeeditor to html files
rougeronj
parents:
diff changeset
     9
		<% } %>
22393cbf4467 export the templates of nodeeditor to html files
rougeronj
parents:
diff changeset
    10
		<%-node.title%>
22393cbf4467 export the templates of nodeeditor to html files
rougeronj
parents:
diff changeset
    11
		<% if (node.uri) { %></a><% } %>
22393cbf4467 export the templates of nodeeditor to html files
rougeronj
parents:
diff changeset
    12
	</span>
22393cbf4467 export the templates of nodeeditor to html files
rougeronj
parents:
diff changeset
    13
</h2>
22393cbf4467 export the templates of nodeeditor to html files
rougeronj
parents:
diff changeset
    14
<% if (node.uri && options.show_node_tooltip_uri) { %>
22393cbf4467 export the templates of nodeeditor to html files
rougeronj
parents:
diff changeset
    15
	<p class="Rk-Display-URI">
22393cbf4467 export the templates of nodeeditor to html files
rougeronj
parents:
diff changeset
    16
		<a href="<%-node.uri%>" target="_blank"><%-node.short_uri%></a>
22393cbf4467 export the templates of nodeeditor to html files
rougeronj
parents:
diff changeset
    17
	</p>
22393cbf4467 export the templates of nodeeditor to html files
rougeronj
parents:
diff changeset
    18
<% } %> <% if (options.show_node_tooltip_description) { %>
22393cbf4467 export the templates of nodeeditor to html files
rougeronj
parents:
diff changeset
    19
	<p class="Rk-Display-Description"><%-node.description%></p>
22393cbf4467 export the templates of nodeeditor to html files
rougeronj
parents:
diff changeset
    20
<% } %> <% if (node.image && options.show_node_tooltip_image) { %>
22393cbf4467 export the templates of nodeeditor to html files
rougeronj
parents:
diff changeset
    21
	<img class="Rk-Display-ImgPreview" src="<%-node.image%>" />
22393cbf4467 export the templates of nodeeditor to html files
rougeronj
parents:
diff changeset
    22
<% } %> <% if (node.has_creator && options.show_node_tooltip_creator) { %>
22393cbf4467 export the templates of nodeeditor to html files
rougeronj
parents:
diff changeset
    23
	<p>
22393cbf4467 export the templates of nodeeditor to html files
rougeronj
parents:
diff changeset
    24
		<span class="Rk-Editor-Label"><%-renkan.translate("Created by:")%></span>
22393cbf4467 export the templates of nodeeditor to html files
rougeronj
parents:
diff changeset
    25
		<span class="Rk-UserColor" style="background: <%-node.created_by_color%>;"></span>
22393cbf4467 export the templates of nodeeditor to html files
rougeronj
parents:
diff changeset
    26
		<%- shortenText(node.created_by_title, 25) %>
22393cbf4467 export the templates of nodeeditor to html files
rougeronj
parents:
diff changeset
    27
	</p>
22393cbf4467 export the templates of nodeeditor to html files
rougeronj
parents:
diff changeset
    28
<% } %>