mirror of
https://github.com/GNS3/gns3-server
synced 2024-11-28 11:18:11 +00:00
commit
bff164afcb
@ -28,6 +28,21 @@ from gns3server.handlers.api.vpcs_handler import VPCSHandler
|
|||||||
from gns3server.handlers.api.config_handler import ConfigHandler
|
from gns3server.handlers.api.config_handler import ConfigHandler
|
||||||
from gns3server.handlers.api.server_handler import ServerHandler
|
from gns3server.handlers.api.server_handler import ServerHandler
|
||||||
from gns3server.handlers.upload_handler import UploadHandler
|
from gns3server.handlers.upload_handler import UploadHandler
|
||||||
|
from ..web.route import Route
|
||||||
|
|
||||||
|
if sys.platform.startswith("linux") or hasattr(sys, "_called_from_test"):
|
||||||
|
from gns3server.handlers.api.iou_handler import IOUHandler
|
||||||
|
|
||||||
|
class HomePage:
|
||||||
|
|
||||||
|
@classmethod
|
||||||
|
@Route.get(
|
||||||
|
r"/",
|
||||||
|
description="Home page for GNS3Server",
|
||||||
|
api_version=None
|
||||||
|
)
|
||||||
|
def index(request, response):
|
||||||
|
response.template("homepage.html")
|
||||||
|
|
||||||
if sys.platform.startswith("linux") or hasattr(sys, "_called_from_test"):
|
if sys.platform.startswith("linux") or hasattr(sys, "_called_from_test"):
|
||||||
from gns3server.handlers.api.iou_handler import IOUHandler
|
from gns3server.handlers.api.iou_handler import IOUHandler
|
||||||
|
18
gns3server/templates/homepage.html
Normal file
18
gns3server/templates/homepage.html
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
|
||||||
|
<title>GNS3 Server</title>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
{% block body %}{% endblock %}
|
||||||
|
</body>
|
||||||
|
<h3>
|
||||||
|
Welcome to Home page of GNS3.
|
||||||
|
</h3>
|
||||||
|
<h4>
|
||||||
|
Visit the upload page to try GNS3 features: <a href = "/upload">Upload</a>
|
||||||
|
</h4>
|
||||||
|
<small>
|
||||||
|
Powered by GNS3 {{gns3_version}}
|
||||||
|
</small>
|
||||||
|
</html>
|
Loading…
Reference in New Issue
Block a user