Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Like ericflo's django pagination, but this one does the sorting! used with ericflo's pagination, displaying tabular paginated and sortable data is very easy
django-sorting
allows for easy sorting, and tables headers () generation
without modifying your views.
There are really 5 steps to setting it up with your projects.
List this application in the INSTALLED_APPS
portion of your settings
file. Your settings file might look something like::
INSTALLED_APPS = (
# ...
'sorting',
)
Install the sorting middleware. Your settings file might look something like::
MIDDLEWARE_CLASSES = (
# ...
'sorting.middleware.SortingMiddleware',
)
If it's not already added in your setup, add the request context processor. Note that context processors are set by default implicitly, so to set them explicitly, you need to copy and paste this code into your under the value TEMPLATE_CONTEXT_PROCESSORS::
("django.core.context_processors.auth",
"django.core.context_processors.debug",
"django.core.context_processors.i18n",
"django.core.context_processors.media",
"django.core.context_processors.request")
Add this line at the top of your template to load the sorting tags:
{% load sorting_tags %}
Decide on a variable that you would like to sort, and use the autosort tag on that variable before iterating over it.
{% autosort object_list %}
Now, you want to display different headers with links to sort your objects_list:
{% th first_name Name %} {% th creation_date Creation %} ...The first argument is a field of the objects list, and the second one(optional) is a title that would be displayed. The previous snippet will be rendered like this:
Name Creation ...That's it!
FAQs
Like ericflo's django pagination, but this one does the sorting! used with ericflo's pagination, displaying tabular paginated and sortable data is very easy
We found that django-sorting demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.