diff options
author | Joas Schilling <nickvergessen@gmx.de> | 2016-06-10 15:15:27 +0200 |
---|---|---|
committer | Thomas Müller <DeepDiver1975@users.noreply.github.com> | 2016-06-10 15:15:27 +0200 |
commit | 372213b052dedf51e568c04cd9c724995b316986 (patch) | |
tree | 6f03aeaac5b6af75eb460c486c95b69fb7d2ea1a /settings/templates/apps.php | |
parent | 57b999fde7cbfc06613c7a8bdff87febdb54b8fb (diff) | |
download | nextcloud-server-372213b052dedf51e568c04cd9c724995b316986.tar.gz nextcloud-server-372213b052dedf51e568c04cd9c724995b316986.zip |
Add developer documentation, website and bug to the applist (#25041)
Diffstat (limited to 'settings/templates/apps.php')
-rw-r--r-- | settings/templates/apps.php | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/settings/templates/apps.php b/settings/templates/apps.php index ecb00fb27c3..d3c14332693 100644 --- a/settings/templates/apps.php +++ b/settings/templates/apps.php @@ -91,8 +91,22 @@ script( <a id="adminDocumentation" class="appslink" href="{{documentation.admin}}" target="_blank" rel="noreferrer"><?php p($l->t('Admin documentation'));?> ↗</a> </span> {{/if}} + + {{#if documentation.developer}} + <span class="developerDocumentation"> + <a id="developerDocumentation" class="appslink" href="{{documentation.developer}}" target="_blank" rel="noreferrer"><?php p($l->t('Developer documentation'));?> ↗</a> + </span> + {{/if}} </p> {{/if}} + + {{#if website}} + <a id="userDocumentation" class="appslink" href="{{website}}" target="_blank" rel="noreferrer"><?php p($l->t('Visit website'));?> ↗</a> + {{/if}} + + {{#if bugs}} + <a id="adminDocumentation" class="appslink" href="{{bugs}}" target="_blank" rel="noreferrer"><?php p($l->t('Report a bug'));?> ↗</a> + {{/if}} </div><!-- end app-description-container --> <div class="app-description-toggle-show" role="link"><?php p($l->t("Show description …"));?></div> <div class="app-description-toggle-hide hidden" role="link"><?php p($l->t("Hide description …"));?></div> |