can handle long task description text
This commit is contained in:
parent
af10e80086
commit
a1cd84b415
@ -79,9 +79,20 @@
|
|||||||
</h5>
|
</h5>
|
||||||
<div class="card-body">
|
<div class="card-body">
|
||||||
[{if $item->getDescription()}]
|
[{if $item->getDescription()}]
|
||||||
<p class="card-text">
|
[{assign var="description" value=$item->getDescription()}]
|
||||||
[{$item->getDescription()}]
|
[{assign var="sectionlength" value="100"}]
|
||||||
</p>
|
|
||||||
|
[{if $description|count_characters:true <= $sectionlength}]
|
||||||
|
<p class="card-text">[{$description}]</p>
|
||||||
|
[{else}]
|
||||||
|
[{assign var="shorttext" value=$description|truncate:$sectionlength:''}]
|
||||||
|
<p class="card-text" data-toggle="collapse" data-target="#collapseExample" aria-expanded="false" aria-controls="collapseExample" style="cursor: pointer">
|
||||||
|
[{$shorttext}]...
|
||||||
|
</p>
|
||||||
|
<p class="card-text collapse" id="collapseExample">
|
||||||
|
...[{$description|replace:$shorttext:''}]
|
||||||
|
</p>
|
||||||
|
[{/if}]
|
||||||
[{/if}]
|
[{/if}]
|
||||||
|
|
||||||
[{if $item->hasFormElements()}]
|
[{if $item->hasFormElements()}]
|
||||||
|
11
CHANGELOG.md
11
CHANGELOG.md
@ -1,15 +1,26 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## 1.3.0.0 (2021-07-29)
|
||||||
|
|
||||||
|
- can handle long task description text
|
||||||
|
- has more generic admin controller templates
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
## 1.2.0.0 (2021-07-27)
|
## 1.2.0.0 (2021-07-27)
|
||||||
|
|
||||||
- adjustments for CLI extension
|
- adjustments for CLI extension
|
||||||
- fix OXID 6.1 incompatibilities
|
- fix OXID 6.1 incompatibilities
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
## 1.1.0.0 (2021-06-25)
|
## 1.1.0.0 (2021-06-25)
|
||||||
|
|
||||||
- implement form builder
|
- implement form builder
|
||||||
- fix key figures export
|
- fix key figures export
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
## 1.0.0.0 (2021-06-22)
|
## 1.0.0.0 (2021-06-22)
|
||||||
|
|
||||||
- initial implementation
|
- initial implementation
|
@ -32,7 +32,7 @@ $aModule = [
|
|||||||
'en' => '',
|
'en' => '',
|
||||||
],
|
],
|
||||||
'thumbnail' => '',
|
'thumbnail' => '',
|
||||||
'version' => '1.2.0.0',
|
'version' => '1.3.0.0',
|
||||||
'author' => 'D³ Data Development (Inh.: Thomas Dartsch)',
|
'author' => 'D³ Data Development (Inh.: Thomas Dartsch)',
|
||||||
'email' => 'support@shopmodule.com',
|
'email' => 'support@shopmodule.com',
|
||||||
'url' => 'https://www.oxidmodule.com/',
|
'url' => 'https://www.oxidmodule.com/',
|
||||||
|
Loading…
x
Reference in New Issue
Block a user