Template source: audience/store/modals/notification_modal.html

{% load i18n %}

<div class="modal fade" id="notificationModal" tabindex="-1" role="dialog" aria-labelledby="notificationModalLabel" aria-hidden="true">
    <div class="modal-dialog modal-notif" role="document">
        <div class="modal-content">
        <div class="modal-header">
            <h5 class="modal-title" id="notification-title">{% trans 'Notifications' %}<!--<span class="badge badge-danger">{{ unread_newsfeeds.counts }}</span>--></h5>
            <button type="button" class="close" data-dismiss="modal" aria-label="Close">
            <span aria-hidden="true">&times;</span>
            </button>
        </div>
        <div class="modal-body">
            <form>
            {% if news_feeds %}
            {% for news_feed in news_feeds %}
                <div class="form-group">
                    <div class="text-overflow">
                        <a  {% if news_feed.unread %}
                                id="notification-links-unread"
                            {% else %}
                                id="notification-links-read"
                            {% endif %} href="/store/notification/{{ news_feed.id }}">{{ news_feed.title }}
                        </a>
                    </div>
                </div>
            {% endfor %}
            {% else %}
                {% trans 'No Notifications . . .' %}
            {% endif %}
            <!--<div class="form-group">-->
                <!--<a id="notification-links-read" href="">Easy Order New Functions (Urgent)</a>-->
            <!--</div>-->
            </form>
        </div>
        <div class="modal-footer">
            <button type="button" class="btn btn-primary" id="notification-btn" data-dismiss="modal">{% trans "Cancel" %}</button>
        </div>
        </div>
    </div>
</div>