{% extends "admin/layout.html" %} {% block title %}{{ super() }} - {{ page | capitalize }} - {{ project.name }}{% endblock %} {% block pagetitle %}
/ {{ project.name | upper }} Admin
{% endblock %} {% block content %} {% include 'admin/projects/modal.html' %} {% for (category, message) in get_flashed_messages(request) %}
{{ message }}
{% endfor %}
{% set lang_icon = {'python': 'python', 'javascript': 'js', 'php': 'php', 'bun': 'js'}.get(project.language | lower, 'code') %}

{{ project.name | title }}

{{ project.language | title }}
{{ funcs | length }}
Functions
{% if project.private %}Private{% else %}Public{% endif %}
Visibility
Quick Actions
Disable Project
Danger Zone
Project Overview
Functions
{{ funcs | length }}
Visibility
{% if project.private %} Private {% else %} Public {% endif %}
Status
Active
Project Details
{{ project.id }}
{% set lang_icon = {'python': 'python', 'javascript': 'js', 'php': 'php', 'bun': 'js'}.get(project.language | lower, 'code') %} {{ project.language | title }}
{{ project.user_id | default('N/A') }}
{{ project.created_at | default('N/A') }}
{{ project.updated_at | default('N/A') }}
Quick Endpoints
{% for func in funcs[:5] %}
{{ func.name }}
/run/{{ project.id }}/{{ func.name }}
{% else %}

No functions defined

{% endfor %} {% if funcs | length > 5 %} {% endif %}
Functions
{{ funcs | length }} total
{% if funcs %}
{% for func in funcs %}
{{ func.name }}
/run/{{ project.id }}/{{ func.name }}
{% endfor %}
{% else %}
No functions defined

This project has no exposed functions

{% endif %}
Project Configuration
All Properties
{% for key, value in project.items() %}
{% endfor %}
Activity Logs
Recent Activity
Project deployed successfully
{{ project.updated_at | default('Recently') }}
Project created
{{ project.created_at | default('N/A') }}
{% endblock %} {% block scripts %} {{ super() }} {% endblock %}