notifications page cleanup

This commit is contained in:
Mouse Reeve 2020-03-16 18:05:49 -07:00
parent b1ad8ba317
commit 3df88f84e7
2 changed files with 44 additions and 35 deletions

View file

@ -97,6 +97,16 @@ h2 {
width: 1rem; width: 1rem;
} }
.notification {
margin-bottom: 1em;
padding: 1em 0;
background-color: #EEE;
}
.notification.unread {
background-color: #DDD;
}
button .icon { button .icon {
font-size: 1.1rem; font-size: 1.1rem;
vertical-align: sub; vertical-align: sub;
@ -194,7 +204,7 @@ ul.menu a {
margin-bottom: 0.5em; margin-bottom: 0.5em;
} }
.follow-requests .row > *:first-child { .follow-requests .row > *:first-child {
width: 15em; width: 20em;
} }
.login form { .login form {
@ -291,6 +301,7 @@ button.warning {
.time-ago { .time-ago {
float: right; float: right;
display: block; display: block;
text-align: right;
} }
.book-preview { .book-preview {
@ -550,10 +561,6 @@ th, td {
margin-left: 3em; margin-left: 3em;
} }
.unread {
background-color: #DDD;
}
a .icon { a .icon {
color: black; color: black;
text-decoration: none; text-decoration: none;

View file

@ -1,41 +1,43 @@
{% extends 'layout.html' %} {% extends 'layout.html' %}
{% load humanize %}l {% load humanize %}l
{% block content %} {% block content %}
<div id="content"> <div class="content-container">
<div> <h2>Notifications</h2>
<h2>Notifications</h2>
<form name="clear" action="/clear-notifications" method="POST">
{% csrf_token %}
<button type="submit">Delete notifications</button>
</form>
{% for notification in notifications %}
<div class="notification{% if notification.id in unread %} unread{% endif %}">
<p>
{% if notification.notification_type == 'FAVORITE' %}
{% include 'snippets/username.html' with user=notification.related_user %}
favorited your
<a href="{{ notification.related_status.absolute_id}}">status</a>
{% elif notification.notification_type == 'REPLY' %} <form name="clear" action="/clear-notifications" method="POST">
{% include 'snippets/username.html' with user=notification.related_user %} {% csrf_token %}
<a href="{{ notification.related_status.absolute_id}}">replied</a> <button type="submit" class="secondary">Delete notifications</button>
to your </form>
<a href="{{ notification.related_status.reply_parent.absolute_id}}">status</a> </div>
{% elif notification.notification_type == 'FOLLOW' %} <div class="content-container">
{% include 'snippets/username.html' with user=notification.related_user %} {% for notification in notifications %}
followed you <div class="notification{% if notification.id in unread %} unread{% endif %}">
<small class="time-ago">{{ notification.created_date | naturaltime }}</small>
{% include 'snippets/username.html' with user=notification.related_user %}
{% if notification.notification_type == 'FAVORITE' %}
favorited your
<a href="{{ notification.related_status.absolute_id}}">status</a>
{% elif notification.notification_type == 'FOLLOW_REQUEST' %} {% elif notification.notification_type == 'REPLY' %}
{% include 'snippets/username.html' with user=notification.related_user %} <a href="{{ notification.related_status.absolute_id}}">replied</a>
sent you a follow request to your
<a href="{{ notification.related_status.reply_parent.absolute_id}}">status</a>
{% elif notification.notification_type == 'FOLLOW' %}
followed you
{% elif notification.notification_type == 'FOLLOW_REQUEST' %}
sent you a follow request
<div class="row shrink">
{% include 'snippets/follow_request_buttons.html' with user=notification.related_user %} {% include 'snippets/follow_request_buttons.html' with user=notification.related_user %}
{% endif %} </div>
<small>{{ notification.created_date | naturaltime }}</small> {% endif %}
</p>
</div>
{% endfor %}
</div> </div>
{% endfor %}
{% if not notifications %}
<p>You're all caught up!</p>
{% endif %}
</div> </div>
{% endblock %} {% endblock %}