in backend_dev i generated with admin generator module News: local开发者_StackOverflow社区host/backend_dev.php/news/2/edit
tl;dr: I need to show data from two different tables in the list view of the Symfony admin generator (preferably via a JOIN statement)
i\'m working on a symfony project based on an existing mysql database, and i generated the shcema.yml from it.The first app created is the backend.
Is there a way of including a slot from generator.yml in Symfony? I would like to add a piece of HTML code only within some backend modules, and slots is the best idea I can come up with.
i have an admin generator for the folowing model: #schema.yml Author: columns: name: { type: string(255), notnull: true }
We\'re using actAs: Versionable for one m开发者_如何学Goodel in our Symfony 1.4 app.We currently edit this model using an admin-generator module.The UI gives no indication that versioning is active at
One can change the query that is used for the list action in an admin generator configuration by using the table_method option. For example,
If it helps, here is my schema for Posts and Comments: BlogPost: actAs: Timestampable: ~ I18n: fields: [title, body]
I have this pretty trivial model: Category: columns: id: { type: integer } name: { type: string(50) } description: { type: text }
I am using Tin开发者_如何学CyMCE for rich text editing of a column which I want to show on the Symfony\'s admin generator \'List\' view.