kopia lustrzana https://github.com/OpenDroneMap/WebODM
16 wiersze
465 B
Python
16 wiersze
465 B
Python
from app.plugins import PluginBase, Menu, MountPoint
|
|
from django.shortcuts import render
|
|
from django.utils.translation import gettext as _
|
|
|
|
class Plugin(PluginBase):
|
|
|
|
def main_menu(self):
|
|
return [Menu(_("GCP Interface"), self.public_url(""), "fa fa-map-marker-alt fa-fw")]
|
|
|
|
def app_mount_points(self):
|
|
return [
|
|
MountPoint('$', lambda request: render(request, self.template_path("app.html"), {'title': 'GCP Editor'}))
|
|
]
|
|
|
|
|