{% extends "account/layout.html" %} {% block title %}{{ super() }} - Functions{% endblock %} {% block pagetitle %}FUNCTIONS{% endblock %} {% block content %} {% for (category, message) in get_flashed_messages(request) %}
{{ message }}
{% endfor %} {% if functions %}
New Function
{% for function in functions %} {% endfor %}
Name Project Updated Actions
{{ function['name'] }} {% set lang_icon = {'python': 'python', 'javascript': 'js', 'php': 'php', 'bun': 'js'}.get(function['language'] | lower, 'code') %} {{ function['project']['name'] }} {{ function['updated_at'] }}
{% else %}
No functions yet

Create your first function to get started

Create Function
{% endif %} {% endblock %}