diff --git a/bookwyrm/forms.py b/bookwyrm/forms.py
index d330211c1..4e92b32ed 100644
--- a/bookwyrm/forms.py
+++ b/bookwyrm/forms.py
@@ -3,7 +3,6 @@ import datetime
from collections import defaultdict
from django import forms
-from django.core.exceptions import ValidationError
from django.forms import ModelForm, PasswordInput, widgets
from django.forms.widgets import Textarea
from django.utils import timezone
@@ -130,8 +129,9 @@ class EditUserForm(CustomForm):
"name",
"email",
"summary",
- "manually_approves_followers",
"show_goal",
+ "manually_approves_followers",
+ "discoverable",
]
help_texts = {f: None for f in fields}
diff --git a/bookwyrm/templates/directory.html b/bookwyrm/templates/directory.html
new file mode 100644
index 000000000..9323752fa
--- /dev/null
+++ b/bookwyrm/templates/directory.html
@@ -0,0 +1,67 @@
+{% extends 'layout.html' %}
+{% load i18n %}
+{% load bookwyrm_tags %}
+{% load humanize %}
+
+{% block title %}{% trans "Directory" %}{% endblock %}
+
+{% block content %}
+
+ {% trans "Directory" %}
+
+
{% blocktrans %}Your account will show up in the directory, and may be recommended to other BookWyrm users.{% endblocktrans %}
+