mirror of
https://github.com/bookwyrm-social/bookwyrm.git
synced 2024-11-15 13:24:04 +00:00
Move notification items into dir
This commit is contained in:
parent
0320898f4e
commit
5adbf2d087
11 changed files with 18 additions and 18 deletions
|
@ -1,20 +1,20 @@
|
|||
{# load the right template #}
|
||||
{% if notification.notification_type == 'MENTION' %}
|
||||
{% include 'notifications/mention.html' %}
|
||||
{% include 'notifications/items/mention.html' %}
|
||||
{% elif notification.notification_type == 'REPLY' %}
|
||||
{% include 'notifications/reply.html' %}
|
||||
{% include 'notifications/items/reply.html' %}
|
||||
{% elif notification.notification_type == 'BOOST' %}
|
||||
{% include 'notifications/boost.html' %}
|
||||
{% include 'notifications/items/boost.html' %}
|
||||
{% elif notification.notification_type == 'FAVORITE' %}
|
||||
{% include 'notifications/fav.html' %}
|
||||
{% include 'notifications/items/fav.html' %}
|
||||
{% elif notification.notification_type == 'FOLLOW' %}
|
||||
{% include 'notifications/follow.html' %}
|
||||
{% include 'notifications/items/follow.html' %}
|
||||
{% elif notification.notification_type == 'FOLLOW_REQUEST' %}
|
||||
{% include 'notifications/follow_request.html' %}
|
||||
{% include 'notifications/items/follow_request.html' %}
|
||||
{% elif notification.notification_type == 'IMPORT' %}
|
||||
{% include 'notifications/import.html' %}
|
||||
{% include 'notifications/items/import.html' %}
|
||||
{% elif notification.notification_type == 'ADD' %}
|
||||
{% include 'notifications/add.html' %}
|
||||
{% include 'notifications/items/add.html' %}
|
||||
{% elif notification.notification_type == 'REPORT' %}
|
||||
{% include 'notifications/report.html' %}
|
||||
{% include 'notifications/items/report.html' %}
|
||||
{% endif %}
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{% extends 'notifications/item_layout.html' %}
|
||||
{% extends 'notifications/items/item_layout.html' %}
|
||||
|
||||
{% load i18n %}
|
||||
{% load utilities %}
|
|
@ -1,4 +1,4 @@
|
|||
{% extends 'notifications/item_layout.html' %}
|
||||
{% extends 'notifications/items/item_layout.html' %}
|
||||
|
||||
{% load i18n %}
|
||||
{% load utilities %}
|
|
@ -1,4 +1,4 @@
|
|||
{% extends 'notifications/item_layout.html' %}
|
||||
{% extends 'notifications/items/item_layout.html' %}
|
||||
|
||||
{% load i18n %}
|
||||
{% load utilities %}
|
|
@ -1,4 +1,4 @@
|
|||
{% extends 'notifications/item_layout.html' %}
|
||||
{% extends 'notifications/items/item_layout.html' %}
|
||||
|
||||
{% load i18n %}
|
||||
{% load utilities %}
|
|
@ -1,4 +1,4 @@
|
|||
{% extends 'notifications/item_layout.html' %}
|
||||
{% extends 'notifications/items/item_layout.html' %}
|
||||
|
||||
{% load i18n %}
|
||||
{% load utilities %}
|
|
@ -1,4 +1,4 @@
|
|||
{% extends 'notifications/item_layout.html' %}
|
||||
{% extends 'notifications/items/item_layout.html' %}
|
||||
|
||||
{% load i18n %}
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
{% extends 'notifications/item_layout.html' %}
|
||||
{% extends 'notifications/items/item_layout.html' %}
|
||||
|
||||
{% load i18n %}
|
||||
{% load utilities %}
|
|
@ -1,4 +1,4 @@
|
|||
{% extends 'notifications/item_layout.html' %}
|
||||
{% extends 'notifications/items/item_layout.html' %}
|
||||
|
||||
{% load i18n %}
|
||||
{% load utilities %}
|
|
@ -1,4 +1,4 @@
|
|||
{% extends 'notifications/item_layout.html' %}
|
||||
{% extends 'notifications/items/item_layout.html' %}
|
||||
|
||||
{% load i18n %}
|
||||
|
Loading…
Reference in a new issue