369 search results for EasyAdmin

{% extends '@EasyAdmin/default/show.html.twig' %}
// ... lines 2 - 15
See Code Block in Script
14 lines | app/config/routing.yml
// ... lines 1 - 9
easy_admin_bundle:
// ... lines 11 - 12
prefix: /easyadmin
See Code Block in Script
{% extends '@!EasyAdmin/layout.html.twig' %}
// ... lines 2 - 6
See Code Block in Script
{% extends '@EasyAdmin/default/list.html.twig' %}
{% block item_actions %}
// ... lines 4 - 6
{% endblock %}
See Code Block in Script
41 lines | app/config/security.yml
// ... lines 1 - 2
security:
// ... lines 4 - 38
access_control:
- { path: ^/easyadmin, roles: ROLE_ADMIN }
See Code Block in Script
14 lines | app/config/routing.yml
// ... lines 1 - 9
easy_admin_bundle:
resource: "@AppBundle/Controller/EasyAdmin/AdminController.php"
// ... lines 12 - 14
See Code Block in Script
Great tutorial, but I'm starting with an empty Symfony project, I've added EasyAdmin, customized the dashboard, everything is fine, but I'm unable to find how to configure the database connection. And I'm probably ...
... Hi, I'm using EasyAdmin 3.x, and I'm having issues with TExtEditorField; apparently, it strip all tags that are not div or H1; I need to handle H2, H3, etc .... I have found this solution: ``` yield ...
Gianluca-F
Gianluca-F
Read Full Comment
Thanks for your help! It still does not work. But to be honest, as the bundle instruction I shouldn't add the logout path as I did above. If I removed it, seems I have a problem in EasyAdmin. As below: Twig\Error ...
He Ryan, How do you get this to work with easyadmin. I have installed the @symfony/ux-turbo and added it to the easy admin dashboard with the configureAssets like so: ``` public function configureAssets(): Assets ...
Hey Alessandro D. EasyAdmin fully relies on the Symfony Form component, so you can do the exact same thing EasyAdmin forms as you would do with "normal" forms. What you need to do is to specify the "choice_label ...
MolloKhan
MolloKhan
Read Full Comment
Hi Victor I found my way ;) I had to implode my own method to encrypt the password when I create a user. I didn't think before I posted the comment ;) EasyAdmin is so powerful when you understood how to override the ...
Hi, are there any compatibility issues with the easyadmin bundle? ...
pasquale_pellicani
pasquale_pellicani
Read Full Comment
159 lines | app/config/config.yml
// ... lines 1 - 80
easy_admin:
// ... lines 82 - 97
entities:
Genus:
// ... line 100
controller: AppBundle\Controller\EasyAdmin\GenusController
// ... lines 102 - 159
See Code Block in Script
158 lines | app/config/config.yml
// ... lines 1 - 80
easy_admin:
// ... lines 82 - 97
entities:
// ... lines 99 - 158
See Code Block in Script
14 lines | app/config/routing.yml
// ... lines 1 - 9
easy_admin_bundle:
resource: "@EasyAdminBundle/Controller/"
type: annotation
prefix: /easyadmin
See Code Block in Script
{% extends '@EasyAdmin/default/list.html.twig' %}
// ... lines 2 - 8
{% block global_actions %}
// ... lines 10 - 20
{% endblock global_actions %}
See Code Block in Script
14 lines | app/config/routing.yml
// ... lines 1 - 9
easy_admin_bundle:
resource: "@EasyAdminBundle/Controller/"
type: annotation
prefix: /easyadmin
See Code Block in Script
7 lines | templates/admin/approve_action.html.twig
// ... lines 1 - 3
<form action="{{ action.linkUrl }}" method="POST">
{{ include('@EasyAdmin/crud/action.html.twig') }}
</form>
See Code Block in Script
34 lines | config/services.yaml
// ... lines 1 - 7
services:
// ... lines 9 - 30
App\EasyAdmin\TruncateLongTextConfigurator:
tags:
- { name: 'ea.field_configurator', priority: -1 }
See Code Block in Script