Petr Dlouhý

Results 117 issues of Petr Dlouhý

## Description If I press Enter on the two factor form, the Back button gets pressed. This fixes that. ## Motivation and Context ## How Has This Been Tested? ##...

Allow setting Proxy models as target/actor/recipient by setting `target_for_concrete_model`/ `actor_for_concrete_model`/`recipient_for_concrete_model` to the `notify` callback.

This MR adds URL of the target, action and actor url to the API endpoint (if the url is defined by `get_url_for_notifications(notification, request)` or `get_absolute_url()` method on the object). We...

under analysis

# Bug report ## What's wrong I have view class in [django-hordak](https://github.com/adamcharnock/django-hordak/blob/1.10.0/hordak/views/accounts.py#L76) defined as: ```python class AccountTransactionsView(LoginRequiredMixin, SingleObjectMixin, ListView): ... ``` Which gives the following mypy errors: ``` # mypy...

bug

In the documentation is no mention how to use `ModelSerializer` for the simple `NameserverViewSet`, so that the POST method would work and associate the `domain_pk` field. I don't know how...

This is partially working implementation of PayPal subscriptions. I was able to manage subscription creation, getting state and cancelling. This is based subscription support drafted in #217. Although I was...

Changes of Payment model, that are required to implement PayU backend and recurring payments. I could implement these changes through some mixin mandatory only for PayU backend, but I think,...

I tried to test Coinbase payments, but I not able to make it working. I think, many things may have changed since it the support was implemented. 1) I tried...

There are few places, where the price or it's tax is set for the payment: - `Payment.total` - `Payment.tax` - `PurchasedItem.price` It is not entirely clear from the docs, if...