paradoxxxzero_butterfly/butterfly/templates/list.html
2015-10-02 17:24:25 +02:00

24 lines
789 B
HTML
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
{% from tornado.options import options %}
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Butterfly - A web terminal based on websocket and tornado">
<meta name="author" content="Mounier Florian">
<link rel="shortcut icon" href="{{ static_url('images/favicon.png') }}">
<title>Butterfly</title>
<link href="/style.css" rel="stylesheet">
</head>
<body>
<h1>Currently open butterfly sessions :</h1>
<ul>
{% for session in sessions %}
<li><h2><a target="_blank" href="/session/{{ session }}">{{ session }}</a></h2></li>
{% end %}
</ul>
</body>
</html>