|
Lines 1370-1376
Link Here
|
| 1370 |
orderable: true, |
1370 |
orderable: true, |
| 1371 |
render: function (data, type, row, meta) { |
1371 |
render: function (data, type, row, meta) { |
| 1372 |
let node = '<a href="suggestion.pl?suggestionid=%s&op=show" title="%s">%s'.format(row.suggestion_id, _("suggestion"), row.title); |
1372 |
let node = '<a href="suggestion.pl?suggestionid=%s&op=show" title="%s">%s'.format(row.suggestion_id, _("suggestion"), row.title); |
| 1373 |
if(row.author) node += ', by %s'.format(row.author); |
1373 |
if(row.author) { |
|
|
1374 |
node += _("%s%s, by %s%s").format("", "", row.author.escapeHtml(), ""); |
| 1375 |
} |
| 1374 |
node += '</a><br />'; |
1376 |
node += '</a><br />'; |
| 1375 |
if(row.copyright_date) node += ' © <span class="suggestion_copyrightdate">%s</span>'.format(row.copyright_date); |
1377 |
if(row.copyright_date) node += ' © <span class="suggestion_copyrightdate">%s</span>'.format(row.copyright_date); |
| 1376 |
if(row.volume_desc) node += '; <span class="suggestion_volume">%s:<em>%s</em></span>'.format(_("Volume"), row.volume_desc); |
1378 |
if(row.volume_desc) node += '; <span class="suggestion_volume">%s:<em>%s</em></span>'.format(_("Volume"), row.volume_desc); |
| 1377 |
- |
|
|