notices.css left out of scss

pull/91/head
eric 2018-02-21 11:12:19 -05:00
parent 466d3b5716
commit 2f4b28f4b3
1 changed files with 2 additions and 6 deletions

View File

@ -1,12 +1,12 @@
{% extends 'notification/base.html' %} {% extends 'notification/base.html' %}
{% load sass_tags %}
{% load i18n %} {% load i18n %}
{% block title %}{% trans "Notices" %}{% endblock %} {% block title %}{% trans "Notices" %}{% endblock %}
{% block extra_css %} {% block extra_css %}
<link type="text/css" rel="stylesheet" href="/static/css/notices.css" /> <link type="text/css" rel="stylesheet" href="{% sass_src 'scss/notices.scss' %}" />
{% endblock %} {% endblock %}
{% block doccontent %} {% block doccontent %}
@ -30,10 +30,6 @@
{% if unseen_count > 0 %} {% if unseen_count > 0 %}
{% for notice in notices %} {% for notice in notices %}
{% if notice.unseen %} {% if notice.unseen %}
{% comment %}
Note: do not call is_unseen because it will mark the notification as seen,
and we're leaving that up to the user.
{% endcomment %}
<div class="notice"> <div class="notice">
{{ notice.message|safe }} {{ notice.message|safe }}
</div> </div>