add links if present on infra logs

This commit is contained in:
Tomáš Mládek 2020-07-15 14:16:36 +02:00
parent bb02d8d2a6
commit 60fa6e7db1
2 changed files with 10 additions and 0 deletions

View file

@ -156,6 +156,10 @@ h2 {
} }
} }
.firehose a {
text-decoration: underline;
}
.firehose .logs { .firehose .logs {
list-style: none; list-style: none;
padding: 0; padding: 0;

View file

@ -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">