# Admin Edit Link for Published Pages

**URL:** https://meta.discourse.org/t/admin-edit-link-for-published-pages/320109
**Category:** Feature
**Tags:** page-publishing
**Created:** [August 5, 2024, 3:17am UTC](https://meta.discourse.org/t/admin-edit-link-for-published-pages/320109 "2024-08-05T03:17:35Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![cogdog](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/cogdog/32/116536_2.png) [@cogdog](https://meta.discourse.org/u/cogdog)
#### Post date: [August 5, 2024, 3:17am UTC](https://meta.discourse.org/t/admin-edit-link-for-published-pages/320109/1 "2024-08-05T03:17:35Z")

</div>

This is pretty minor, but I provide users a series of published pages as part of a site guide at [https://connect.oeglobal.org/pub/connect-guide](https://connect.oeglobal.org/pub/connect-guide). I rarely edit them, but find it is not always easy to find the original topic to edit. It is in the source as a canonical link.

It would be nice for an admin to see a link somewhere to get to the edit view, or at least the topic view.

Until then I build a simple browser bookmarklet that looks for a canonical link, if it finds one offers a confirm dialog to go to view it.

```plaintext
javascript:c=document.querySelector("link[rel='canonical']");if(!c) { alert('No canonical link found.') } else { if (confirm("Visit canonical link " + c.href +" ?")) window.location=c.href};

```
