Nereo Berardozzi

Results 25 comments of Nereo Berardozzi

I changed modal url in ModalAttributes.php file, I added also index.php because my hosting is stupid. https://github.com/chack1172/mybb2/commit/1d0ceba9b9e9d2363640536889ff5292b3230358

Thank you for the response euantorano :) The currect path is resources/assets/sass

@euantorano I never used sass, is it correct? Template: ` {{ trans('admin::users.avatar_field') }} {% for user in users %} {{ user.name }} {% endfor %} ` Style `.admin-table { width:...

You have to wait for the pull request, it is an hard edit for me :o never used laravel too

Ok I used `gulp watch` to change files. There's a litte problem: `- resources\assets\sass\rtl.scss

The problem is in the file gulfile.js at line 51 https://github.com/mybb/mybb2/blob/master/gulpfile.js The file rtl.scss doen't exists, it was changed to main.rtl.css https://github.com/mybb/mybb2/tree/master/resources/assets/sass

How ho I set a default value to form_select if a variable doesn't exists? `{{ form_select('role', roles, role ? role.id) }}` Solved

I meant if role was null, but now I know how to do that: `{{ form_select('role', roles, role ? role.role_slug : 'user') }}`

When I commit the changes, do I have to update admin.css, admin.css.map, admin_rtl.css and admin_rtl.css.map?

I'm trying to send a pull request but it select my past commit and devilshakerz commit too. How could I send only my last commit of my fork?