|
Lines 1354-1360
Link Here
|
| 1354 |
orderable: true, |
1354 |
orderable: true, |
| 1355 |
render: function (data, type, row, meta) { |
1355 |
render: function (data, type, row, meta) { |
| 1356 |
let node = '<a href="suggestion.pl?suggestionid=%s&op=show" title="%s">%s'.format(row.suggestion_id, _("suggestion"), row.title); |
1356 |
let node = '<a href="suggestion.pl?suggestionid=%s&op=show" title="%s">%s'.format(row.suggestion_id, _("suggestion"), row.title); |
| 1357 |
if(row.author) node += ', by %s'.format(row.author); |
1357 |
if(row.author) { |
|
|
1358 |
node += _("%s%s, by %s%s").format("", "", row.author.escapeHtml(), ""); |
| 1359 |
} |
| 1358 |
node += '</a><br />'; |
1360 |
node += '</a><br />'; |
| 1359 |
if(row.copyright_date) node += ' © <span class="suggestion_copyrightdate">%s</span>'.format(row.copyright_date); |
1361 |
if(row.copyright_date) node += ' © <span class="suggestion_copyrightdate">%s</span>'.format(row.copyright_date); |
| 1360 |
if(row.volume_desc) node += '; <span class="suggestion_volume">%s:<em>%s</em></span>'.format(_("Volume"), row.volume_desc); |
1362 |
if(row.volume_desc) node += '; <span class="suggestion_volume">%s:<em>%s</em></span>'.format(_("Volume"), row.volume_desc); |
| 1361 |
- |
|
|