#3284 Add description area in all modules on admin panel

This commit is contained in:
muammertop 2021-05-22 13:39:14 +03:00
parent 6f66ba6900
commit b0c6a7b567
5 changed files with 12 additions and 1 deletions

View File

@ -4,4 +4,5 @@ return [
'title' => 'Ads',
'name' => 'Ads Module',
'description' => 'Ads Module',
'info' => 'This is the screen where you can add, delete and edit ads from the Ads page. On this page, you can simply do the operations such as post management and ad configuration.'
];

View File

@ -3,5 +3,6 @@
return [
'title' => 'Category',
'name' => 'Category Module',
'description' => ''
'description' => '',
'info' => 'This is the screen where you can add, delete and edit categories from the category page. You can easily manage main categories and sub-categories from this page.',
];

View File

@ -2762,6 +2762,10 @@ body {
}
}
.page-info {
background-color: rgba(17, 190, 246, 0.6);
}
/** bootstrap 4.1 Column Fix**/
.col-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}

View File

@ -24,6 +24,10 @@
{{ breadcrumb() }}
{% if trans('module::addon.info') != 'module::addon.info' %}
<div class="page-info m-2 small text-white alert rounded">{{ trans('module::addon.info') }}</div>
{% endif %}
<div class="container-fluid">
{% include "theme::partials/messages" %}
{% include "theme::partials/buttons" %}

View File

@ -4,4 +4,5 @@ return [
'title' => 'Location',
'name' => 'Location Module',
'description' => 'Description',
'info' => 'On this page, you can manage country, city, district, neighborhood and village information.',
];