text-decoration: underline;
}
+.link_red a, a:visited {
+ color: #BB0000; /* #BB0000 #030250 */
+ text-decoration:none;
+}
+.link_red a:hover {
+ background-color: transparent;
+ color: #BB0000 ; /* #BB0000 #4888f0 */
+ text-decoration: underline;
+}
+
a img { border: none; }
textarea {
<ul id="seminars">
{% block courses %}
{% for seminar in all_seminars %}
- <li><a href="{% url teleforma-seminar-detail seminar.id %}">{{ seminar.title }}{% if user.is_staff and seminar.status == 2 %}<img src="{{ STATIC_URL }}telemeta/images/ok.png" title="{% trans "published" %}" alt=""/>{% endif %}</a></li>
+ <li><a href="{% url teleforma-seminar-detail seminar.id %}" {% if user.is_staff and seminar.status != 2 %}class="link_red"{% endif %}>{{ seminar.title }}</a></li>
{% endfor %}
{% endblock courses %}
</ul>