Hi @alcoma
This is a little feature I've been thinking about for a long time and would be very useful to directly see the page of an object after an edition! (Suggestion for the development team π)
Here's a way to add a direct link to the public page in an object's summary.
In your Providence directory, find the file themes/your_theme/views/editor/objects/summary_html.php
(replace "your_theme" with the name of your theme, or with "default")
Make a copy of it just in case...
Edit it, and around line 40, you have:
<?= $t_item->getLabelForDisplay(); ?>
You can add a link just after like that:
<?= $t_item->getLabelForDisplay(); ?> <a href="https://yourdomainname/index.php/Detail/objects/<?= $item_id ?>" target="_blank">π</a>
The same trick can be applied to entities, places, etc.
I think there is a way to retrieve the root of the URL without hard-coding it in the code, but I haven't looked...