16 lines
464 B
HTML
16 lines
464 B
HTML
{% extends "workspaces/base.html" %}
|
|
|
|
{% from "components/alert.html" import Alert %}
|
|
{% from "components/icon.html" import Icon %}
|
|
|
|
{% block workspace_content %}
|
|
|
|
{% if g.dev %}
|
|
{{ Alert("In Progress", message="This page is a work in progress. You won't be able to edit environments on this project just yet.", level="warning") }}
|
|
{% endif %}
|
|
|
|
{% set modalName = "updateProjectConfirmation" %}
|
|
{% include "fragments/edit_project_form.html" %}
|
|
|
|
{% endblock %}
|