mirror of
https://codeberg.org/rimu/pyfedi
synced 2025-02-02 16:21:32 -08:00
0 means cache forever #254
This commit is contained in:
parent
6d555c4c54
commit
6e36bc3a95
1 changed files with 1 additions and 1 deletions
|
@ -27,7 +27,7 @@ class SiteProfileForm(FlaskForm):
|
|||
class SiteMiscForm(FlaskForm):
|
||||
enable_downvotes = BooleanField(_l('Enable downvotes'))
|
||||
allow_local_image_posts = BooleanField(_l('Allow local image posts'))
|
||||
remote_image_cache_days = IntegerField(_l('Days to cache images from remote instances for'))
|
||||
remote_image_cache_days = IntegerField(_l('Days to cache images from remote instances for'), render_kw={'placeholder': _l('0 means cache forever')})
|
||||
enable_nsfw = BooleanField(_l('Allow NSFW communities'))
|
||||
enable_nsfl = BooleanField(_l('Allow NSFL communities and posts'))
|
||||
community_creation_admin_only = BooleanField(_l('Only admins can create new local communities'))
|
||||
|
|
Loading…
Add table
Reference in a new issue