about summary refs log tree commit diff
path: root/app/views/directories
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2019-01-18 10:25:44 +0100
committerGitHub <noreply@github.com>2019-01-18 10:25:44 +0100
commita492a9bcd355d4f0998990905177ac4f9699cc3c (patch)
tree6760121a236e9846ac65f94ec1b8253b3195f77f /app/views/directories
parent4699cf853c8533cfca1f356d6c9e430c16b75335 (diff)
Add information about how to opt-in to the directory on the directory (#9834)
Fix #9833
Diffstat (limited to 'app/views/directories')
-rw-r--r--app/views/directories/index.html.haml18
1 files changed, 16 insertions, 2 deletions
diff --git a/app/views/directories/index.html.haml b/app/views/directories/index.html.haml
index 88706def7..a8aa68cc4 100644
--- a/app/views/directories/index.html.haml
+++ b/app/views/directories/index.html.haml
@@ -41,8 +41,22 @@
       = paginate @accounts
 
   .column-1
-    - if @tags.empty?
-      .nothing-here.nothing-here--flexible
+    - if user_signed_in?
+      .box-widget.notice-widget
+        - if current_account.discoverable?
+          - if current_account.followers_count < Account::MIN_FOLLOWERS_DISCOVERY
+            %p= t('directories.enabled_but_waiting', min_followers: Account::MIN_FOLLOWERS_DISCOVERY)
+          - else
+            %p= t('directories.enabled')
+        - else
+          %p= t('directories.how_to_enable')
+
+          = link_to settings_profile_path do
+            = t('settings.edit_profile')
+            = fa_icon 'chevron-right fw'
+
+    - if @tags.empty? && !user_signed_in?
+      .nothing-here
     - else
       - @tags.each do |tag|
         .directory__tag{ class: tag.id == @tag&.id ? 'active' : nil }