diff --git a/view/index.html b/view/index.html index 6a5c26a..aed4084 100644 --- a/view/index.html +++ b/view/index.html @@ -4,34 +4,44 @@
-

indexer stats

+

feta overview

+ + +
+
Instances
+
+
Tracking {{ instances | length }} instances + across the Fediverse.
+ + + View Instance List +
+
+ +
+
Toots
+
+
I have {{ tootCount }} toots + in my database.
+ View Latest Toots +
+
+ +
+
Recent Events
+
+
Last n System Events
+ +

Discovered instance toot1.example.com

+

Discovered instance toot2.example.com

+

Discovered instance toot3.example.com

+

Discovered instance toot4.example.com

+ +
+
- - - - - - - - - - - -{% for instance in instances %} - - - - - - - -{% endfor %} - -
instance idhostnamestatustootCountDetail
{{instance.uuid}}{{instance.hostname}}{{instance.status}}{{instance.tootCount}} - -
{% endblock %} diff --git a/view/instance.html b/view/instance.html new file mode 100644 index 0000000..fa09213 --- /dev/null +++ b/view/instance.html @@ -0,0 +1,24 @@ +{% extends "page.html" %} + +{% block content %} +
+ + +

instance {{instance.hostname}}

+ +
+
+ {{ instance.hostname }} + ({{instance.tootCount}} toots) +
+
+
{{instance.status}}
+

First Stat

+

Second Stat

+

Third Stat

+ View Instance Website +
+
+ +
+{% endblock %} diff --git a/view/instancelist.html b/view/instancelist.html new file mode 100644 index 0000000..49234b1 --- /dev/null +++ b/view/instancelist.html @@ -0,0 +1,36 @@ +{% extends "page.html" %} + +{% block content %} +
+ +

instance list

+ + + + + + + + + + + + +{% for instance in instances %} + + + + + + + +{% endfor %} + +
hostnamestatustootCountnextFetchDetail
{{instance.hostname}}{{instance.status}}{{instance.tootCount}}{{instance.nextFetch}} + +
+ +
+{% endblock %}