Changeset View
Changeset View
Standalone View
Standalone View
users/templates/users/activity.html
| {% extends 'common/base.html' %} | {% extends 'common/base.html' %} | ||||
| {% block content %} | {% block content %} | ||||
| <div class="container-xl"> | <div class="container-xl"> | ||||
| <section class="my-4"> | <section class="my-4"> | ||||
| {% url 'user-activity' as my_activity_url %} | {% url 'user-activity' as my_activity_url %} | ||||
| {% url 'user-notification' as my_notifications_url %} | {% url 'user-notification' as my_notifications_url %} | ||||
| {% if request.path == my_activity_url %} | {% if request.path == my_activity_url %} | ||||
| {% include "common/components/simple_header.html" with title="My activity" subtitle="All your most recent acivity in the cloud is here." %} | {% include "common/components/simple_header.html" with title="My activity" subtitle="All your most recent acivity in the cloud is here." %} | ||||
| {% elif request.path == my_notifications_url %} | {% elif request.path == my_notifications_url %} | ||||
| {% include "common/components/simple_header.html" with title="Notifications" subtitle="All the latest likes and replies to your content are here." %} | {% include "common/components/simple_header.html" with title="Notifications" subtitle="All the latest likes and replies to your content are here." %} | ||||
| {% else %} | {% else %} | ||||
| {% endif %} | {% endif %} | ||||
| {% include 'users/components/actions.html' %} | {% include 'users/components/actions.html' %} | ||||
| <div class="row justify-content-center mt-3"> | <div class="row justify-content-center mt-3"> | ||||
| <div class="col-auto text-center"> | <div class="col-auto text-center"> | ||||
| {% include "common/components/navigation/pagination.html" %} | {% include "common/components/navigation/pagination.html" %} | ||||
| </div> | </div> | ||||
| </div> | </div> | ||||
| </section> | </section> | ||||
| </div> | </div> | ||||
| {% endblock %} | {% endblock %} | ||||