From d6c508bb46d660947718083e3fa214049253c42b Mon Sep 17 00:00:00 2001 From: Yaroslsav-95 Date: Thu, 29 Mar 2018 16:45:02 +0300 Subject: Fixed bugs, and compatibility issues with Django 2.0 --- README.md | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) (limited to 'README.md') diff --git a/README.md b/README.md index 3da5fa9..7ed11eb 100644 --- a/README.md +++ b/README.md @@ -17,18 +17,18 @@ This django app is still a work in progress. More features will be added/complet 4. You can configure and customize the blog by adding and modifying to your liking/needs the following settings to your settings.py: - WEBLOG_ENABLE_COMMENTS = True #Should comments be allowed on your blog - WEBLOG_ALLOW_ANON_COMMENTS = False #Are visitors allowed to leave comments without signing in (note that you should provide a way for them to register and login if you wish to allow only registered user's comments) - WEBLOG_MULTILINGUAL = True #Enable multilingual features of the weblog app (i.e.: BlogPost and Category translations) - WEBLOG_TITLE = 'Weblog Test' #The name/title of your blog (e.g.: Example Site Newsletter) - WEBLOG_BASE_TEMPLATE = 'site_base.html' #Which base template to use (if not indicated, it will use its own base template) - WEBLOG_SHOW_AUTHOR = True #Should the author of the post be shown (it uses the Django User model) - WEBLOG_USE_AUTHORS_USERNAME = True #Show the username of the author instead of the fullname - WEBLOG_SHOW_SIDEBAR = True #Enable the sidebar - WEBLOG_SHOW_CATEGORIES = True #Show links to categories in the sidebar - WEBLOG_SHOW_ARCHIVE = True #Show the archive treeview (Years>Months) in the sidebar - WEBLOG_POSTS_PER_PAGE = 10 #Number of posts that should be shown per page - -5. Note that if you use your own base template, you will either need to link bootstrap in your base template's head, or write your own styles for the site based on the bootstrap classes. You will as well need to link files "weblog/css/weblog.css" and "weblog/js/weblog.js" in your html head. - -Note: This package depends on the following python packages (besides Django and their dependencies): django-summernote \ No newline at end of file + * WEBLOG_ENABLE_COMMENTS = True #Should comments be allowed on your blog + * WEBLOG_ALLOW_ANON_COMMENTS = False #Are visitors allowed to leave comments without signing in (note that you should provide a way for them to register and login if you wish to allow only registered user's comments) + * WEBLOG_MULTILINGUAL = True #Enable multilingual features of the weblog app (i.e.: BlogPost and Category translations) + * WEBLOG_TITLE = 'Weblog Test' #The name/title of your blog (e.g.: Example Site Newsletter) + * WEBLOG_BASE_TEMPLATE = 'site_base.html' #Which base template to use (if not indicated, it will use its own base template) + * WEBLOG_SHOW_AUTHOR = True #Should the author of the post be shown (it uses the Django User model) + * WEBLOG_USE_AUTHORS_USERNAME = True #Show the username of the author instead of the fullname + * WEBLOG_SHOW_SIDEBAR = True #Enable the sidebar + * WEBLOG_SHOW_CATEGORIES = True #Show links to categories in the sidebar + * WEBLOG_SHOW_ARCHIVE = True #Show the archive treeview (Years>Months) in the sidebar + * WEBLOG_POSTS_PER_PAGE = 10 #Number of posts that should be shown per page + +5. Note that if you use your own base template, you will either need to link bootstrap (v3.2 at the moment) in your base template's head, or write your own styles for the site based on the bootstrap classes. You will as well need to link files "weblog/css/weblog.css" and "weblog/js/weblog.js" in your html head, or write your own. + +Note: This package depends on the following python packages (besides Django and their dependencies): django-summernote -- cgit v1.2.3