Display context logs with a lighter way

This commit is contained in:
Rodolphe Breard 2018-06-10 22:42:52 +02:00
parent 49c0cbf16e
commit 634eeac715

View file

@ -68,8 +68,8 @@
</td> </td>
{% endif %} {% endif %}
<td>{{ entry.created|date:"H:i:s" }}</td> <td>{{ entry.created|date:"H:i:s" }}</td>
<td class="has-text-right">{% if entry.nick %}{{ entry.nick }}{% else %}*{% endif %}</td> <td class="has-text-right{% if not entry.nick %} has-text-grey-light is-italic{% endif %}">{% if entry.nick %}{{ entry.nick }}{% else %}*{% endif %}</td>
<td>{{ entry.content|urlize }}</td> <td{% if not entry.nick %} class="has-text-grey-light is-italic"{% endif %}>{{ entry.content|urlize }}</td>
</tr> </tr>
{% endfor %} {% endfor %}
</tbody> </tbody>