diff --git a/app/admin/forms.py b/app/admin/forms.py index 56688055..3dbebf0e 100644 --- a/app/admin/forms.py +++ b/app/admin/forms.py @@ -104,8 +104,8 @@ class EditCommunityForm(FlaskForm): class EditTopicForm(FlaskForm): - name = StringField(_l('Name'), validators=[DataRequired()]) - machine_name = StringField(_l('Slug'), validators=[DataRequired()]) + name = StringField(_l('Name'), validators=[DataRequired()], render_kw={'title': _l('Human readable name for the topic.')}) + machine_name = StringField(_l('Slug'), validators=[DataRequired()], render_kw={'title': _l('A short and unique identifier that becomes part of the URL.')}) parent_id = SelectField(_l('Parent topic'), coerce=int, validators=[Optional()], render_kw={'class': 'form-select'}) submit = SubmitField(_l('Save')) diff --git a/app/templates/admin/communities.html b/app/templates/admin/communities.html index 3d4257dd..2fc4a43e 100644 --- a/app/templates/admin/communities.html +++ b/app/templates/admin/communities.html @@ -19,10 +19,10 @@
Name | +Name | Local/Remote | -Seen | -Attitude | -Rep | +Seen | +Attitude | +Rep | Banned | -Reports | -IP | -Source | +Reports | +IP | +Source | Actions |
---|