Ref #269: changes in long template for greynoise

This commit is contained in:
Nils Kuhnert 2018-06-04 15:30:01 +02:00
parent 6093ce5c29
commit 6f756ee941
No known key found for this signature in database
GPG Key ID: 3591DD5B3103ED50

View File

@ -10,7 +10,6 @@
<th>Last update</th> <th>Last update</th>
<th>Name</th> <th>Name</th>
<th>Tags</th> <th>Tags</th>
<th>Metadata</th>
</thead> </thead>
<tbody ng-repeat="record in content.records | orderBy:'-last_updated'"> <tbody ng-repeat="record in content.records | orderBy:'-last_updated'">
<tr> <tr>
@ -19,11 +18,15 @@
<td>{{record.last_updated}}</td> <td>{{record.last_updated}}</td>
<td>{{record.name}}</td> <td>{{record.name}}</td>
<td><span class="label label-warning" ng-if="content.metadata.tor">Tor-Node</span></td> <td><span class="label label-warning" ng-if="content.metadata.tor">Tor-Node</span></td>
<td><pre>{{record.metadata}}</pre></td> </tr>
<tr>
<td colspan="5">
Metadata: <pre>{{record.metadata | json}}</pre>
</td>
</tr> </tr>
</tbody> </tbody>
</table> </table>
<p ng-ig="!content.records">No records found for {{artifact.data}}.</p> <p ng-if="!content.records">No records found for {{artifact.data}}.</p>
</div> </div>
</div> </div>