django-hitcount icon indicating copy to clipboard operation
django-hitcount copied to clipboard

Django hit counter application that tracks the number of hits/views for chosen objects

Results 24 django-hitcount issues
Sort by recently updated
recently updated
newest added

I run hitcount 1.2.3 on Django 1.11.28 To register a hit, I use the following code, as per the docs: ```js {% get_hit_count_js_variables for image as hitcount %} jQuery(document).ready(function($) {...

bug

Hi, I really like this django add on. However, I've noticed that it has a feature of max hits per IP address, which makes me think that the app tracks...

It would be nice to be able to search/filter hits by the object it was accessing (column HITCOUNT on the screenshots) ![image](https://github.com/thornomad/django-hitcount/assets/1010248/e83747ca-9923-4a57-b479-b1a522261f40) As when e.g. I'm entering "Specht" the result...

I had a project based on django 1.11 which had been using the [https://github.com/Pustakalaya/django-hitcount](https://github.com/Pustakalaya/django-hitcount), which is a modification of django-hitcount to support uuid. Since I migrated it to django 3.2.5,...

Is is possible to have this identification in hits? So, when it is bot, we might have is_bot column there and mark it as true. Also, can we have bot_count,...

Hello, here is my django model class HitCount(models.Model, HitCountMixin): endpoint = models.CharField(max_length=255000000000000000) hits = models.PositiveIntegerField(default=0) def __str__(self): return self.endpoint here is my views class CustomHitCountDetailView(HitCountDetailView): model = HitModel count_hit =...

Does it support integrating with DRF?

Good afternoon! Help me understand how to make it possible to delete Hits from the site admin panel? Now if I tick the hit records and make the menu item...

Bumps [wheel](https://github.com/pypa/wheel) from 0.30.0 to 0.38.1. Changelog Sourced from wheel's changelog. Release Notes UNRELEASED Updated vendored packaging to 22.0 0.38.4 (2022-11-09) Fixed PKG-INFO conversion in bdist_wheel mangling UTF-8 header values...

dependencies