{"id":20937327,"url":"https://github.com/collab-project/django-admin-footer","last_synced_at":"2025-05-13T22:31:03.243Z","repository":{"id":57418787,"uuid":"56547530","full_name":"collab-project/django-admin-footer","owner":"collab-project","description":"Templatetag to render footer in Django admin","archived":false,"fork":false,"pushed_at":"2019-08-18T20:16:57.000Z","size":13,"stargazers_count":3,"open_issues_count":0,"forks_count":4,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-05-07T02:33:09.635Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/collab-project.png","metadata":{"files":{"readme":"README.rst","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2016-04-18T22:48:38.000Z","updated_at":"2020-01-28T17:25:57.000Z","dependencies_parsed_at":"2022-09-13T13:14:56.123Z","dependency_job_id":null,"html_url":"https://github.com/collab-project/django-admin-footer","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/collab-project%2Fdjango-admin-footer","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/collab-project%2Fdjango-admin-footer/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/collab-project%2Fdjango-admin-footer/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/collab-project%2Fdjango-admin-footer/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/collab-project","download_url":"https://codeload.github.com/collab-project/django-admin-footer/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":253567073,"owners_count":21928774,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-18T22:35:13.560Z","updated_at":"2025-05-13T22:31:03.224Z","avatar_url":"https://github.com/collab-project.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"django-admin-footer\n===================\n\n``django-admin-footer`` provides a templatetag that renders a footer with\nversion information in the Django admin.\n\n.. image:: https://img.shields.io/pypi/v/django-admin-footer.svg\n    :target: https://pypi.python.org/pypi/django-admin-footer\n.. image:: https://img.shields.io/pypi/pyversions/django-admin-footer.svg\n    :target: https://pypi.python.org/pypi/django-admin-footer\n.. image:: https://travis-ci.org/collab-project/django-admin-footer.svg?branch=master\n    :target: https://travis-ci.org/collab-project/django-admin-footer\n.. image:: https://coveralls.io/repos/collab-project/django-admin-footer/badge.svg\n    :target: https://coveralls.io/r/collab-project/django-admin-footer\n.. image:: https://img.shields.io/badge/license-MIT-blue.svg\n    :target: https://raw.githubusercontent.com/collab-project/django-admin-footer/master/LICENSE\n\nInstallation\n------------\n\nUse pip_ to install the download and install the package from PyPi_::\n\n  pip install django-admin-footer\n\nOr checkout the source code from Github_::\n\n  git clone https://github.com/collab-project/django-admin-footer.git\n  cd django-admin-footer\n  pip install -e .\n\nAdd ``admin_footer`` to ``INSTALLED_APPS`` in your Django project settings:\n\n.. code-block:: python\n\n  INSTALLED_APPS = (\n      ...\n\n      'admin_footer',\n  )\n\nUsage\n-----\n\nThe ``ADMIN_FOOTER_DATA`` settings dict provides the data used in your footer.\nThe default template expects the following template vars: ``site_url``,\n``site_name``, ``period`` and ``version``.\n\nFor example in ``settings.py``:\n\n.. code-block:: python\n\n  from datetime import datetime\n  from myapp import version\n\n  ADMIN_FOOTER_DATA = {\n    'site_url': 'https://www.google.com',\n    'site_name': 'Google',\n    'period': '{}'.format(datetime.now().year),\n    'version': 'v{} - '.format(version)\n  }\n\nLoad the tag in your admin template (e.g. ``admin/base.html``):\n\n.. code-block:: python\n\n  {% load footer %}\n\nAnd add the ``admin_footer`` tag to the ``footer`` block:\n\n.. code-block:: python\n\n  {% block footer %}\n  {% admin_footer %}\n  {% endblock %}\n\nYou'll now see a copyright link at the bottom of the admin pages.\nThe ``version`` information is hidden for non-staff users.\n\n.. _pip: https://pypi.python.org/pypi/pip\n.. _PyPi: https://pypi.python.org/pypi/django-admin-footer\n.. _Github: https://github.com/collab-project/django-admin-footer\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcollab-project%2Fdjango-admin-footer","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcollab-project%2Fdjango-admin-footer","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcollab-project%2Fdjango-admin-footer/lists"}