Introduced support for scheduling actions

This commit is contained in:
Russell Ballestrini 2025-06-09 01:09:25 +00:00
parent cddee2604f
commit 4d899d367f
9 changed files with 1238 additions and 59 deletions

View file

@ -1,3 +1,4 @@
<!-- base.html.j2 -->
<!DOCTYPE html>
<html lang="en">
<head>
@ -127,6 +128,9 @@
<li><a href="{{ request.route_url('home') }}">Home</a></li>
{% if request.user and request.user.is_verified %}
<li><a href="{{ request.route_url('create_namespace') }}">Create Namespace</a></li>
{% if request.namespace %}
<li><a href="{{ request.route_url('manage_namespace', namespace_short_id=request.namespace.short_id) }}">Manage Namespace</a></li>
{% endif %}
<li><a href="{{ request.route_url('profile') }}">Profile</a></li>
<li>
<form action="{{ request.route_url('logout') }}" method="post" class="inline-form">
@ -149,6 +153,9 @@
<li><a href="{{ request.route_url('home') }}">Home</a></li>
{% if request.user and request.user.is_verified %}
<li><a href="{{ request.route_url('create_namespace') }}">Create Namespace</a></li>
{% if request.namespace %}
<li><a href="{{ request.route_url('manage_namespace', namespace_short_id=request.namespace.short_id) }}">Manage Namespace</a></li>
{% endif %}
<li><a href="{{ request.route_url('profile') }}">Profile</a></li>
<li>
<form action="{{ request.route_url('logout') }}" method="post" class="inline-form">