TransManager is a simple django app to deal with the translations tasks of the models content based on django-parler. It's not for static files.
Add "transmanager" and "django_tables2" to your INSTALLED_APPS setting like this:
INSTALLED_APPS = [ ... 'transmanager', 'django_tables2', ]
Include the transmanager URLconf in your project urls.py like this:
path('transmanager', include('transmanager.urls')),
Run python manage.py migrate transmanager to create the transmanager models.
Start de development server and visit: http://127.0.0.1:8000/admin/transmanager/ then you can setup the languages and the translators users.
Start updating your models content and you'll see the translation tasks appear.
Visit the documentation for an in-depth look at TransManager.