forked from rDrama/rDrama
1
0
Fork 0
master
kek7198 2021-11-28 11:28:12 -06:00
parent da6a8d3219
commit 3758aaca4d
1 changed files with 11 additions and 11 deletions

View File

@ -6,20 +6,20 @@
{% block subHeader %} {% block subHeader %}
<div class="relative max-w-screen-2xl mx-auto px-4 py-4 grid grid-cols-12 rounded-t-md"> <div class="relative max-w-screen-2xl mx-auto px-4 py-4 grid grid-cols-12 rounded-t-md">
<div class="absolute top-0 left-0 w-full h-full bg-gradient-to-t from-gray-800 to-gray-700 rounded-t-md sub-header-shadow"></div> <div class="absolute top-0 left-0 w-full h-full bg-gradient-to-t from-gray-200 to-gray-100 rounded-t-md sub-header-shadow"></div>
<div class="relative col-span-full flex items-center"> <div class="relative col-span-full flex items-center">
<div> <div>
<h1 class="font-bold text-xl font-heading leading-normal"> <h1 class="font-bold text-xl font-heading leading-normal">
Inbox Inbox
</h1> </h1>
<ul class="text-gray-400 text-sm flex items-center space-x-3 leading-normal"> <ul class="text-gray-700 text-sm flex items-center space-x-3 leading-normal">
<li> <li>
<a class="{% if not '=true' in request.full_path %}font-bold text-pink-600{% endif %}" href="/notifications"> <a class="{% if not '=true' in request.full_path %}font-bold text-red-600{% endif %}" href="/notifications">
All All
</a> </a>
</li> </li>
<li> <li>
<a class="{% if '/notifications?posts=true' in request.full_path %}font-bold text-pink-600{% endif %}" href="/notifications?posts=true"> <a class="{% if '/notifications?posts=true' in request.full_path %}font-bold text-red-600{% endif %}" href="/notifications?posts=true">
Posts Posts
{% if v.post_notifications_count %} {% if v.post_notifications_count %}
<span class="text-gray-600">({{v.post_notifications_count}})</span> <span class="text-gray-600">({{v.post_notifications_count}})</span>
@ -27,13 +27,13 @@
</a> </a>
</li> </li>
<li> <li>
<a class="{% if '/notifications?messages=true' in request.full_path %}font-bold text-pink-600{% endif %}" href="/notifications?messages=true"> <a class="{% if '/notifications?messages=true' in request.full_path %}font-bold text-red-600{% endif %}" href="/notifications?messages=true">
Messages Messages
</a> </a>
</li> </li>
{% if v.admin_level > 1 %} {% if v.admin_level > 1 %}
<li> <li>
<a class="{% if '/notifications?modmail=true' in request.full_path %}font-bold text-pink-600{% endif %}" href="/notifications?modmail=true"> <a class="{% if '/notifications?modmail=true' in request.full_path %}font-bold text-red-600{% endif %}" href="/notifications?modmail=true">
Mod Mail Mod Mail
</a> </a>
</li> </li>
@ -65,7 +65,7 @@
<p class="text-gray-500 text-sm"> <p class="text-gray-500 text-sm">
When someone comments or replies, it will show up here. When someone comments or replies, it will show up here.
</p> </p>
<a href="/notifications" class="block mt-3 px-4 py-2 bg-gradient-to-t from-pink-700 to-pink-600 focus:from-pink-600 focus:to-pink-700 border border-gray-900 rounded-md text-shadow shadow-inset-t-white-10 text-sm font-bold text-gray-300 focus:text-gray-500 focus:shadow-inner focus:outline-none"> <a href="/notifications" class="block mt-3 px-4 py-2 bg-gradient-to-t from-red-700 to-red-600 focus:from-red-600 focus:to-red-700 border border-gray-900 rounded-md text-shadow shadow-inset-t-white-10 text-sm font-bold text-gray-300 focus:text-gray-500 focus:shadow-inner focus:outline-none">
View entire inbox View entire inbox
</a> </a>
</div> </div>
@ -86,9 +86,9 @@
{% set path = request.full_path %} {% set path = request.full_path %}
{% endif %} {% endif %}
{% if request.full_path == "/notifications" %} {% if request.full_path == "/notifications" %}
<small><a class="block px-2 py-1 text-sm font-bold text-pink-600 bg-gray-900" href="{{path}}?page={{page-1}}">Previous</a></small> <small><a class="block px-2 py-1 text-sm font-bold text-red-600 bg-gray-900" href="{{path}}?page={{page-1}}">Previous</a></small>
{% else %} {% else %}
<small><a class="block px-2 py-1 text-sm font-bold text-pink-600 bg-gray-900" href="{{path}}&page={{page-1}}">Previous</a></small> <small><a class="block px-2 py-1 text-sm font-bold text-red-600 bg-gray-900" href="{{path}}&page={{page-1}}">Previous</a></small>
{% endif %} {% endif %}
</li> </li>
{% else %} {% else %}
@ -105,9 +105,9 @@
{% set path = request.full_path %} {% set path = request.full_path %}
{% endif %} {% endif %}
{% if request.full_path == "/notifications" %} {% if request.full_path == "/notifications" %}
<small><a class="block px-2 py-1 text-sm font-bold text-pink-600 bg-gray-900" href="{{path}}?page={{page+1}}">Next</a></small> <small><a class="block px-2 py-1 text-sm font-bold text-red-600 bg-gray-900" href="{{path}}?page={{page+1}}">Next</a></small>
{% else %} {% else %}
<small><a class="block px-2 py-1 text-sm font-bold text-pink-600 bg-gray-900" href="{{path}}&page={{page+1}}">Next</a></small> <small><a class="block px-2 py-1 text-sm font-bold text-red-600 bg-gray-900" href="{{path}}&page={{page+1}}">Next</a></small>
{% endif %} {% endif %}
</li> </li>
{% else %} {% else %}