diff options
author | Aaron Parecki <aaron@parecki.com> | 2023-10-08 10:10:40 -0700 |
---|---|---|
committer | Aaron Parecki <aaron@parecki.com> | 2023-10-08 10:10:40 -0700 |
commit | 17c5d57fd05cb4ee5b0b189bd4cbf519fb636d41 (patch) | |
tree | a082fd06c900860c50b7921434c320dce6565f3e /views/dashboard.php | |
parent | 88509de125bd382832228cdd2efcf7b259dcab2b (diff) | |
parent | 1c0432939a5381ffe1453e05401ec8e3b2ba4826 (diff) |
Merge branch 'Zegnat-add-weight-posts'
Diffstat (limited to 'views/dashboard.php')
-rw-r--r-- | views/dashboard.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/views/dashboard.php b/views/dashboard.php index 15f3ff7..51c13f1 100644 --- a/views/dashboard.php +++ b/views/dashboard.php @@ -18,6 +18,9 @@ <?php if(supports_post_type($this->user, 'like')): ?> <li><a href="/favorite">👍</a></li> <?php endif; ?> + <?php if(supports_post_type($this->user, 'weight')): ?> + <li><a href="/weight">⚖️</a></li> + <?php endif; ?> <?php if(supports_post_type($this->user, 'repost')): ?> <li><a href="/repost">♺</a></li> <?php endif; ?> |