1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
| from app.plugins import PluginBase, Menu, MountPoint
| from django.shortcuts import render
| from django.utils.translation import gettext as _
| from django.contrib.auth.decorators import login_required
|
| 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):
| @login_required
| def gcpi(request):
| return render(request, self.template_path("app.html"), {'title': 'GCP Editor'})
|
| return [
| MountPoint('$', gcpi)
| ]
|
|