Repos / pytaku / 08049dfb63
commit 08049dfb6396b765c24389b5ab8aace80fa93d71
Author: Bùi Thành Nhân <hi@imnhan.com>
Date:   Thu Aug 6 00:07:53 2020 +0700

    update instructions

diff --git a/pyproject.toml b/pyproject.toml
index 0726a55..8df5c14 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -1,6 +1,6 @@
 [tool.poetry]
 name = "pytaku"
-version = "0.1.4"
+version = "0.1.5"
 description = ""
 authors = ["Bùi Thành Nhân <hi@imnhan.com>"]
 license = "AGPL-3.0-only"
diff --git a/src/pytaku/templates/follows.html b/src/pytaku/templates/follows.html
index 906df62..e73f057 100644
--- a/src/pytaku/templates/follows.html
+++ b/src/pytaku/templates/follows.html
@@ -57,7 +57,6 @@
 
 {% block content %}
 
-
 {% for title in titles %}
 {% set title_url = url_for('title_view', site=title['site'], title_id=title['id']) %}
 <div class="title">
@@ -86,4 +85,8 @@
 </div>
 {% endfor %}
 
+{% if not titles %}
+<p>You're not following any title yet. Try searching for some.</p>
+{% endif %}
+
 {% endblock %}
diff --git a/src/pytaku/templates/home.html b/src/pytaku/templates/home.html
index 74cf0dd..76030ea 100644
--- a/src/pytaku/templates/home.html
+++ b/src/pytaku/templates/home.html
@@ -5,7 +5,8 @@
 {% endblock %}
 
 {% block content %}
-<h1>This is a work in progress</h1>
 <p>Try searching for some manga title using the box above.</p>
-<p>Account/Bookmarking aren't working yet.</p>
+<p>Logging in allows you to follow manga titles.</p>
+
+<p><strong>This is a work in progress.</strong> Expect bugs.</p>
 {% endblock %}