add links if present on infra logs
This commit is contained in:
parent
bb02d8d2a6
commit
60fa6e7db1
2 changed files with 10 additions and 0 deletions
|
@ -156,6 +156,10 @@ h2 {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.firehose a {
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
|
||||||
.firehose .logs {
|
.firehose .logs {
|
||||||
list-style: none;
|
list-style: none;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
|
|
|
@ -90,7 +90,13 @@
|
||||||
<li>
|
<li>
|
||||||
<div class="header">
|
<div class="header">
|
||||||
<div class="timestamp">[{{ feed_item.published_datetime|date:"Y-m-d | H:i:s" }}]</div>
|
<div class="timestamp">[{{ feed_item.published_datetime|date:"Y-m-d | H:i:s" }}]</div>
|
||||||
|
{% if feed_item.link %}
|
||||||
|
<a href="{{ feed_item.url }}">
|
||||||
|
{% endif %}
|
||||||
<div class title="title">{{ feed_item.title }}</div>
|
<div class title="title">{{ feed_item.title }}</div>
|
||||||
|
{% if feed_item.link %}
|
||||||
|
</a>
|
||||||
|
{% endif %}
|
||||||
</div>
|
</div>
|
||||||
{% if feed_item.summary %}
|
{% if feed_item.summary %}
|
||||||
<div class="summary">
|
<div class="summary">
|
||||||
|
|
Loading…
Reference in a new issue