We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 80bed80 commit 55b963eCopy full SHA for 55b963e
1 file changed
openatlas/display/display.py
@@ -416,8 +416,13 @@ def add_data(self) -> None:
416
if name in ['creator', 'license_holder']:
417
if value := getattr(self.entity, name):
418
names = [rh.name for rh in value]
419
+ # todo: start again from here
420
+ # todo: make a button
421
+ link_ = link(f'+ {name}', url_for('rights_holder_insert'))
422
# todo: if RH gets an own view, then make a link
- self.data[attribute['label']] = str('<br>'.join(names))
423
+ html = f'{link_}<br>{str('<br>'.join(names))}'
424
+
425
+ self.data[attribute['label']] = html
426
if name in ['example_id', 'public', 'resolver_url', 'website_url']:
427
428
if isinstance(value, bool):
0 commit comments