Some proper node lookup display
parent
a93d16c9dc
commit
b1d629f303
@ -1,9 +1,43 @@
|
|||||||
<div class="node-lookup pure-g">
|
<div class="node-lookup pure-g">
|
||||||
<div class="pure-u-1-2">
|
<div class="pure-u-3-5">
|
||||||
<h2>{%?name}</h2>
|
<div class="unit-content">
|
||||||
<p>
|
<h1>{%?name}</h1>
|
||||||
{%?notes}
|
<p>
|
||||||
</p>
|
{%?notes}
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
<strong>Node ID:</strong> {%?id}
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<table class="pure-table pure-table-bordered">
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Name</th>
|
||||||
|
<th>Value</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
{%foreach property in properties}
|
||||||
|
<tr>
|
||||||
|
<td class="property-name">{%?property[name]}</td>
|
||||||
|
<td>
|
||||||
|
{%?property[value]}
|
||||||
|
{%if isempty|property[source] == false}
|
||||||
|
<a class="source-ref" href="{%?property[source]}" target="_blank"><i class="icon-external-link"></i></a>
|
||||||
|
{%/if}
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
{%/foreach}
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="pure-u-2-5">
|
||||||
|
<div class="unit-content">
|
||||||
|
<h2>Relationships</h2>
|
||||||
|
<p>
|
||||||
|
No relationships were found.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="pure-u-1-2">test2</div>
|
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
Reference in New Issue