Jessie
Jessie
This added a recaptcha button to the registration page. The button only appears if recaptcha is enabled in the config and the user is not logged in. I included a...
Toasts seem to be removed after 1 second, which is a little problematic if you want to change the duration of the animation. Being able to configure this would be...
Example: ``` - with some_context ... - with some_other_context ... ``` Gets compiled to: ``` {% with some_context %} ... {% with some_other_context %} ... {% endwith %} {% endwith...
Example: `%input{type: "text", value: "={f.value|default:""}"}` The double quotes for `default` are removed, which renders to `value='{{ f.value|default: }}'` and raises an exception because it's missing a parameter. Using single quotes...
- Have a model with a belongs to relation to another model - Make the relation nullable - Retrieve a record where the relation is null - The relation field...
Explicitly writing out tags and using a #{} structure causes the entire block to not render properly
`a href="#{page_path(@conn, :index)}"` Generates the link as expected. `` Causes the tag to be rendered out in plain text onto the page. In addition, ANY other tags or HTML style...
Suppose I have a resource `company` with a nested resource `users`: ``` /company/ /company//users ``` I rely on the `company_pk` kwarg to check if `request.user` has permissions, but because the...
It would be great to be able to specify the window's coordinates when it first is created. - Absolute coordinates (x, y) - Center window - Don't care (let the...
Relevant docs: https://goswagger.io/use/spec/route.html Params must be formatted like this: ```go // Parameters: // + name: id // in: path // type: integer // required: true ``` If you try to...
## Expected Behavior Include an embedded struct in a response, label it with `swagger:allOf`, and expect to see a `$ref` in the generated schema. ## Actual Behavior The fields are...