You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
openNG/public_html/templates/nodes/lookup.tpl

44 lines
904 B
Smarty

<div class="node-lookup pure-g">
<div class="pure-u-3-5">
<div class="unit-content">
<h1>{%?name}</h1>
<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>