diff options
author | Mario <mario@mariovavti.com> | 2021-08-22 09:20:40 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2021-08-22 09:20:40 +0000 |
commit | 3bb71a6ba88c42744652d793ae767cf0c79388bd (patch) | |
tree | a836e21e4dfb1e14aab0b316bdf5ab71e328f34e /view/tpl/app_install.tpl | |
parent | 7093b66b76424efe311b67ed18141f6a478bf875 (diff) | |
download | volse-hubzilla-3bb71a6ba88c42744652d793ae767cf0c79388bd.tar.gz volse-hubzilla-3bb71a6ba88c42744652d793ae767cf0c79388bd.tar.bz2 volse-hubzilla-3bb71a6ba88c42744652d793ae767cf0c79388bd.zip |
infrastructure to provide an app install widget for modules and make the bookmark app use it
Diffstat (limited to 'view/tpl/app_install.tpl')
-rw-r--r-- | view/tpl/app_install.tpl | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/view/tpl/app_install.tpl b/view/tpl/app_install.tpl new file mode 100644 index 000000000..fa2a02eb5 --- /dev/null +++ b/view/tpl/app_install.tpl @@ -0,0 +1,12 @@ +<div> + <h2>{{$papp.name}}</h2> +</div> +<div class="mb-3"> + {{$papp.desc}} +</div> +<form action="appman" method="post"> + <input type="hidden" name="papp" value="{{$papp_encoded}}" /> + <button type="submit" name="install" value="install" class="btn btn-success"> + <i class="fa fa-fw fa-arrow-circle-o-down"></i> {{$install}} + </button> +</form> |