diff options
author | friendica <info@friendica.com> | 2014-05-20 18:08:49 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2014-05-20 18:08:49 -0700 |
commit | fc0967b84b5e1301c0ce3a9a41c00985ce16bc82 (patch) | |
tree | ad5871266aba7561d3e1becd9faf3e872622baf2 /view | |
parent | 8333f9fe20b6190e48a9d802baaf41d2926545ed (diff) | |
download | volse-hubzilla-fc0967b84b5e1301c0ce3a9a41c00985ce16bc82.tar.gz volse-hubzilla-fc0967b84b5e1301c0ce3a9a41c00985ce16bc82.tar.bz2 volse-hubzilla-fc0967b84b5e1301c0ce3a9a41c00985ce16bc82.zip |
most of the remaining apps basic infrastructure except a form to create the things. Don't let this fool you - there is still a lot of work, but there isn't a whole lot of work to create a demo; in fact you can demo it now.
Diffstat (limited to 'view')
-rw-r--r-- | view/tpl/app.tpl | 11 | ||||
-rw-r--r-- | view/tpl/app_select.tpl | 4 | ||||
-rwxr-xr-x | view/tpl/myapps.tpl | 9 |
3 files changed, 19 insertions, 5 deletions
diff --git a/view/tpl/app.tpl b/view/tpl/app.tpl index 30287b044..323dfbe63 100644 --- a/view/tpl/app.tpl +++ b/view/tpl/app.tpl @@ -1,6 +1,13 @@ <div class="app-container"> -<a href="{{$ap.url}}" {{if $ap.hover}}title="{{$ap.hover}}"{{/if}}><img src="{{$ap.photo}}" width="80" height="80" /> -<div class="app-name">{{$ap.name}}</div> +<a href="{{$app.url}}" {{if $app.hover}}title="{{$app.hover}}"{{/if}}><img src="{{$app.photo}}" width="80" height="80" /> +<div class="app-name">{{$app.name}}</div> </a> +{{if $install || $update || $delete }} +<form action="appman" method="post"> +<input type="hidden" name="papp" value="{{$app.papp}}" /> +{{if $install}}<button type="submit" name="install" value="{{$install}}" class="btn btn-default" title="{{$install}}" /><i class="icon-download-alt" ></i></button>{{/if}} +{{if $delete}}<button type="submit" name="delete" value="{{$delete}}" class="btn btn-default" title="{{$delete}}" /><i class="icon-remove drop-icons"></i></button>{{/if}} +</form> +{{/if}} </div> diff --git a/view/tpl/app_select.tpl b/view/tpl/app_select.tpl index 9613b4976..d6eb2c31a 100644 --- a/view/tpl/app_select.tpl +++ b/view/tpl/app_select.tpl @@ -1,10 +1,8 @@ <div class="widget"> <h3>{{$title}}</h3> <ul> -<li><a href="apps/system">{{$system}}</a></li> +<li><a href="apps">{{$system}}</a></li> <li><a href="apps/personal">{{$personal}}</a></li> -<li><a href="apps/featured">{{$featured}}</a></li> -<li><a href="apps/new">{{$new}}</a></li> </ul> </div> diff --git a/view/tpl/myapps.tpl b/view/tpl/myapps.tpl new file mode 100755 index 000000000..1a591f9f8 --- /dev/null +++ b/view/tpl/myapps.tpl @@ -0,0 +1,9 @@ +<h3>{{$title}}</h3> + +{{foreach $apps as $ap}} +<div class="app-container"> +{{$ap}} +</div> +{{/foreach}} +<div class="clear"></div> + |