Samuël Weber/GwendalD
Samuël Weber/GwendalD
This PR add the useful `has_perm` templatetags, similar to django rules. Usage example: ``` {% has_perm "app.action" request.user object as can_do_action %} {% if can_do_action %} Do stuff {% endif...
Hello! If I understood correctly the code and the changelog, the `R` rule should be used instead of the old `Attribute` one. Here is a small documentation fix for this....
In the doc it is stated that: https://django-tables2.readthedocs.io/en/latest/pages/api-reference.html#Table.Meta ``` All attributes are overwritten if defined in the child’s class Meta, no merging is attempted. ``` However, in the code there...
The arguments of `Table.Meta` had 2 levels of indentation, making them outside the scope of the Meta arguments.
Hello, In the documentation of the scatterplot function, it is written that the remaining kwargs are passed down to the pyplot scatter function. However, the pyplot scatter function has these...
When fiwing a previous bug, I added a new one... Theta labels were not correctly displayed anymore. Here is a fix + add some test.
Hi! I started updating the website to handle #308 . It appears that using an up to date gem for github-pages solved the issue... I may continue to update things...
fix doc
PR for #37
In the `In` rule, a copy/past typo from the `Is` rule: https://github.com/daisylb/bridgekeeper/blob/d9ed685226e5b05d2a16f44390927932733b3728/bridgekeeper/rules.py#L484 Should read ```python in_current_groups = In(lambda user: user.groups.all()) ```
Hello! I'm trying to order a table by a bookmarked boolean. However, the bookmark data is user-dependent. I can easily show the bookmark in `render_bookmark` method and use `self.request.user` in...