Results 46 issues of Adam

When I use this code: ``` {!! Form::text('title', 'Title') !!} ``` I get this output: ```html Title ``` If somebody decides to mess with the HTML using their browser's developer...

bug

I noticed that the `APIRequestLogAdmin` class allows users to add and edit records. If that's not needed, I would suggest making all of the fields read-only and adding this: ```python...

question

Oftentimes, anonymous users won't have a session. In that scenario, ads that are shown to them and ads that they click on won't be recorded. Django's `SESSION_SAVE_EVERY_REQUEST` setting won't help...

## Description Since the class includes `verbose_name = 'User Sessions'`, this makes it so that the app appears in the admin as "User Sessions" instead of "User_Sessions". ## Motivation and...

Is there a plan to support Vue 3? It would be good if the README mentioned that support is either coming or not.

Currently, 404 errors are handled like this: ```javascript res.status(404).send('404 | Page Not Found') ``` Since this is a demo app, it would be nice to see a demo of handling...

This is what I'm running (the image is from [here](https://en.wikipedia.org/wiki/Python_Conference)): ```python from sorl.thumbnail.shortcuts import get_thumbnail thumbnail = get_thumbnail( 'https://upload.wikimedia.org/wikipedia/commons/0/09/Closing_panel_of_PyCon_Asia_Pacific%2C_Ngee_Ann_Kongsi_Auditorium%2C_Singapore_Management_University_-_20100611.jpg', '200x200', crop='smart', ) print(thumbnail.size) ``` This is the output: ```python [30,...

Current, `next` defaults to `'/'`, as shown [here](https://github.com/relekang/django-nopassword/blob/v3.0.1/nopassword/models.py#L32-L33). I propose that it default to `settings.LOGIN_REDIRECT_URL`. Thoughts?

## Expected Behavior I should be able to run a command like `python manage.py shell` without any errors. ## Current Behavior ``` [ERROR] management_commands File "/var/www/example.com/manage.py", line 33: Management command...

enhancement
pull request welcome

Including FFprobe adds over 100 MB. For systems that already have FFprobe, it would be preferable to install `get-video-properties` without it.