A Django Knowledgebase
Project description
django-help
Overview
[!WARNING] This project is under active development and not yet ready for production use.
django-help is a powerful and flexible Django package that provides a multilingual knowledge base and help system for Django applications. Its standout features include multi-language support and seamless import/export functionality, making it an ideal solution for creating and managing help content across different languages and projects.
Key Features
-
Multi-Language Support:
- Create and manage help content in multiple languages
- Easily translate articles, categories, and tags
- Language-specific content display based on user preferences or settings
-
Import/Export Functionality:
- Import single articles or bulk import multiple articles
- Export individual articles or entire knowledge bases
- Support for Markdown format with YAML frontmatter for metadata
-
Article Management:
- Create and edit help articles using Markdown for rich text formatting
- Organize content with categories and tags
- Set article visibility and highlight important content
-
Contextual Help:
- Associate articles with specific URL paths for context-sensitive help
- Display relevant content based on the user's current location in the application
-
Search Functionality:
- Full-text search across all articles, titles, and tags in multiple languages
- Customizable search results ranking and filtering
-
User Interface:
- Responsive design for optimal viewing on various devices
- Customizable templates for seamless integration with your application's look and feel
- Modal view support for displaying help content without page navigation
-
Admin Interface:
- User-friendly Django admin integration for content management
- Bulk actions for efficient article and category management
-
Extensibility:
- Customizable base models and querysets for tailored functionality
- Hooks for adding custom authorization logic
Requirements
- Python 3.10 or higher
- Django 4.2 or higher
- Additional dependencies:
- django-markdownx 4.0+: For Markdown editing and rendering
- django-translated-fields 0.13+: For multi-language support
- django-taggit 6.1+: For tagging functionality
- python-frontmatter 1.1+: For parsing Markdown files with metadata
- django-crispy-forms 2.3+: For enhanced form rendering
- crispy-bootstrap5 2024.2+: For Bootstrap 5 styling in crispy forms
Installation
Install django-help using pip:
$ pip install django-help
Quick Start Guide
- Add required apps to your
INSTALLED_APPS
:
INSTALLED_APPS = [
...
'django_help',
'markdownx',
'taggit',
'crispy_forms',
'crispy_bootstrap5',
]
And add the django_help_tags to your TEMPLATES
builtins:
TEMPLATES = [
{
...
'OPTIONS': {
'builtins': [
'django_help.templatetags.django_help_tags',
],
},
},
]
- Include django-help URLs in your project's
urls.py
:
from django.urls import include, path
urlpatterns = [
...
path('help/', include('django_help.urls')),
]
- Run migrations to create necessary database tables:
$ python manage.py migrate django_help
- Configure your static files settings to include django-help static files:
STATIC_URL = '/static/'
STATICFILES_DIRS = [
...
('django_help', 'path/to/your/django_help/static'),
]
- Start creating help content through the Django admin interface.
Multi-Language Support
django-help uses django-translated-fields to provide robust multi-language support for your help content.
Configuration
- Define your project's languages in your project's settings, per Django's translations documentation:
LANGUAGE_CODE = 'en'
LANGUAGES = [
('en', 'English'),
('es', 'Spanish'),
('fr', 'French'),
# Add languages as needed
]
- Configure additional language settings in
DJANGO_HELP_CONFIG
:
This configuration allows you to specify which languages are available for translation in django-help. To make translations for each language required or optional in models and forms, set the blank
key for each language:
DJANGO_HELP_CONFIG = {
"EXTRA_LANGUAGES": {
"es": {"blank": False}, # Spanish translations are required
"fr": {"blank": True}, # French translations are optional
},
# Other settings...
}
Creating Multi-Language Content
When creating or editing articles in the admin interface, you'll see separate fields for each configured language:
- Title (English)
- Title (Spanish)
- Title (French)
- Content (English)
- Content (Spanish)
- Content (French)
Fill in the content for each language as needed. If a language is set to "blank": True
in the configuration, it's optional.
Displaying Multi-Language Content
django-help automatically displays content in the user's preferred language based on Django's language settings. You can also manually control the displayed language:
from django.utils.translation import activate
activate('es') # Switch to Spanish
# Your view logic here
Display help content in your templates:
{% load django_help_tags %}
<!-- Display help button for the current path -->
{% django_help_current_path %}
<!-- Display help button for a specific category -->
{% django_help_category "getting-started" %}
<!-- Display help button for a specific article slug -->
{% django_help_slug "how-to-reset-password" %}
<!-- Display help button for a specific tag -->
{% django_help_tag "account-management" %}
Import/Export Functionality
django-help provides powerful import and export capabilities for managing your help content.
Exporting Articles
- In the Django admin interface, go to the DjangoHelp Articles section.
- Select the articles you want to export.
- Choose the "Export selected articles to Markdown (.md) and/or ZIP" action.
- If exporting a single article, you'll get a .md file. For multiple articles, you'll receive a ZIP archive.
Importing Articles
You can import articles individually or in bulk:
- Prepare your Markdown files with YAML frontmatter for metadata:
---
title: How to Reset Your Password
slug: reset-password
category: Account Management
tags: password, account, security
---
# How to Reset Your Password
1. Go to the login page
2. Click on "Forgot Password"
3. ...
- In the Django admin interface, go to the DjangoHelp Articles section.
- Click on the "Upload" button.
- Choose either a single .md file or a ZIP archive containing multiple .md files.
- Submit the form to import the articles.
Bulk Import/Export
(This feature is planned for a future release.)
For large-scale import or export operations, you can use management commands:
# Export all articles
$ python manage.py export_help_articles
# Import articles from a directory
$ python manage.py import_help_articles /path/to/article/directory
Multi-Language Import/Export
When exporting, each article's file will contain content for all configured languages:
---
title_en: How to Reset Your Password
title_es: Cómo Restablecer tu Contraseña
title_fr: Comment Réinitialiser Votre Mot de Passe
slug: reset-password
category: Account Management
tags: password, account, security
---
# English Content
How to reset your password...
# Contenido en Español
Cómo restablecer tu contraseña...
# Contenu en Français
Comment réinitialiser votre mot de passe...
When importing, the system will automatically detect and populate the appropriate language fields based on the frontmatter and content structure.
Advanced Usage
Customizing Templates
Override default templates by creating your own in your project's template directory:
django_help/pages-index.html
: Main help pagedjango_help/pages-category.html
: Category listing pagedjango_help/fragments/modal_content.html
: Article display modaldjango_help/markdownx/widget.html
: Markdown editor widget
Extending Models
Extend base models for custom functionality:
from django.db import models
class CustomHelpArticle(models.Model):
custom_field = models.CharField(max_length=100)
class Meta:
abstract = True
def custom_method(self):
# Custom functionality
pass
Update your DJANGO_HELP_CONFIG
to use the custom model:
DJANGO_HELP_CONFIG = {
"BASE_MODEL": "myapp.models.CustomHelpArticle",
# Other settings...
}
Contributing
We welcome contributions to django-help! Please see our Contributor Guide for details on how to get started, our code of conduct, and the process for submitting pull requests.
License
django-help is distributed under the terms of the MIT license. This project is free and open-source software.
Support and Issues
If you encounter any problems or have questions, please file an issue on our GitHub repository. For general discussions or questions, you can use the Discussions tab on GitHub.
Credits
This project was generated from @OmenApps's Cookiecutter Django Package template.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file django_help-2024.10.1.tar.gz
.
File metadata
- Download URL: django_help-2024.10.1.tar.gz
- Upload date:
- Size: 29.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.4.18
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c288d2f8cba3e7d5de70e4bf901fa4890944b36faf100480d16eb16a37c836ad |
|
MD5 | ed90197259b646634434ca4c6494ccf9 |
|
BLAKE2b-256 | 6320e9809ad0ce9e5175be781a3b73ef1a3026ed55d5ed75696362b9ff99fbb6 |
File details
Details for the file django_help-2024.10.1-py3-none-any.whl
.
File metadata
- Download URL: django_help-2024.10.1-py3-none-any.whl
- Upload date:
- Size: 29.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.4.18
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 90f63dd8e388ee1e0f97a0957990db0b61089cd936e3b61a6d38bb376be936a2 |
|
MD5 | a1a62b909e4f8020c74d2b6391a45294 |
|
BLAKE2b-256 | 429404d6292b35c4c34cd73119bcaf432828d2ccd7312ffad4564b52308c0b5c |