Santiago L
70042f3b5c
commit 0f26b5a8e0
Author: jorgepastorr <jorge.pastor.rr@gmail.com>
Date: Sun Jul 9 07:51:51 2023 +0000
Repo: https://gitea.pangea.org/pangea/django-orchestra.git
24 lines
712 B
Python
24 lines
712 B
Python
from django.utils.translation import gettext_lazy as _
|
|
|
|
from orchestra.contrib.orchestration import ServiceController
|
|
|
|
from . import WebAppServiceMixin
|
|
|
|
|
|
class StaticController(WebAppServiceMixin, ServiceController):
|
|
"""
|
|
Static web pages.
|
|
Only creates the webapp dir and leaves the web server the decision to execute CGIs or not.
|
|
"""
|
|
verbose_name = _("Static")
|
|
default_route_match = "webapp.type == 'static'"
|
|
|
|
def save(self, webapp):
|
|
context = self.get_context(webapp)
|
|
self.create_webapp_dir(context)
|
|
self.set_under_construction(context)
|
|
|
|
def delete(self, webapp):
|
|
context = self.get_context(webapp)
|
|
self.delete_webapp_dir(context)
|