From e37fbd07a3420a51e641e23c440e3396509b0d3f Mon Sep 17 00:00:00 2001 From: Iman Karimi Date: Mon, 31 Jul 2023 16:39:37 +0330 Subject: [PATCH] set query params to fixed search section --- README.md | 1 + docs/index.rst | 1 + log_reader/static/log_reader/css/log_reader.css | 2 +- log_reader/templates/log_reader/admin/change_list.html | 5 ++++- setup.py | 2 +- 5 files changed, 8 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 83ea2fc..8cab0fd 100644 --- a/README.md +++ b/README.md @@ -8,6 +8,7 @@ ## Why Django Log Reader? - Reading files based on Linux commands speeds up the display of file content +- Search in files based on Linux commands - Download the result of the content - Display all files according to the pattern defined in the `settings.py` - Simple interface diff --git a/docs/index.rst b/docs/index.rst index ef28f80..b56f917 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -11,6 +11,7 @@ Why Django Log Reader? ========================= * Reading files based on Linux commands speeds up the display of file content +* Search in files based on Linux commands * Download the result of the content * Display all files according to the pattern defined in the ``settings.py`` * Simple interface diff --git a/log_reader/static/log_reader/css/log_reader.css b/log_reader/static/log_reader/css/log_reader.css index 50bd7ed..ca92891 100644 --- a/log_reader/static/log_reader/css/log_reader.css +++ b/log_reader/static/log_reader/css/log_reader.css @@ -5,7 +5,7 @@ color: #ffffff; cursor: pointer; border: 1px solid #d0d0d0; - position: fixed; + position: absolute; right: 315px; top: 156px; } \ No newline at end of file diff --git a/log_reader/templates/log_reader/admin/change_list.html b/log_reader/templates/log_reader/admin/change_list.html index 6bc35e1..d3e62a1 100644 --- a/log_reader/templates/log_reader/admin/change_list.html +++ b/log_reader/templates/log_reader/admin/change_list.html @@ -29,10 +29,13 @@

File Logs

{% if django_version >= '3' %}
{% endif %}
- diff --git a/setup.py b/setup.py index 57909b5..e64dc64 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ setup( name='django-log-reader', - version='1.1.8', + version='1.1.9', zip_safe=False, packages=find_packages(), include_package_data=True,