Compare commits

...

2 Commits

Author SHA1 Message Date
j 4ca42a041a add group template 2021-06-24 17:36:02 +01:00
j 7d122c0f6c fix renderGroup editable 2021-06-03 17:10:29 +01:00
3 changed files with 10 additions and 1 deletions

View File

@ -1290,7 +1290,7 @@
"email": {
// E-mail address in contact form (to)
"contact": "contact@leftove.rs",
"footer": "-- https://leftove.rs/",
"footer": "-- \nhttps://leftove.rs/",
"prefix": "leftove.rs news -",
// E-mail address uses by the system (from)
"system": "system@leftove.rs"

View File

@ -0,0 +1,8 @@
<div>
<div style="position: absolute; left: 16px; right: 16px; top: 16px">
<div style="font-weight: bold; font-size: 13px">About {name}:</div>
<div style="height: 8px"></div>
<div>{description}</div>
<div style="height: 8px"></div>
</div>
</div>

View File

@ -700,6 +700,7 @@ pandora.ui.infoView = function(data, isMixed) {
$('<span>').html(formatKey(key)).appendTo($element);
Ox.EditableContent({
clickLink: pandora.clickLink,
editable: canEdit,
format: function(value) {
return formatValue(key, value);
},