mirror of
https://github.com/YunoHost/yunohost-admin.git
synced 2024-09-03 20:06:15 +02:00
65 lines
2.4 KiB
Text
65 lines
2.4 KiB
Text
<div class="btn-breadcrumb">
|
|
<a href="#/" ><i class="fa-home"></i><span class="sr-only">{{t 'home'}}</span></a>
|
|
<a href="#/apps">{{t 'applications'}}</a>
|
|
<a href="#/apps/install">{{t 'install'}}</a>
|
|
</div>
|
|
|
|
<div class="actions-group">
|
|
<a href="#/apps/refresh" class="btn btn-info">
|
|
<span class="fa-refresh"></span> {{t 'refresh_app_list'}}
|
|
</a>
|
|
</div>
|
|
|
|
<div class="separator"></div>
|
|
|
|
<div class="list-group">
|
|
{{#apps}}
|
|
<a href="#/apps/install/{{id}}" class="list-group-item slide" title="{{t 'install'}}">
|
|
<span class="fa-chevron-right pull-right"></span>
|
|
<h2 class="list-group-item-heading">
|
|
{{manifest.name}} <small>{{manifest.id}}</small>
|
|
{{#installed}}<span class="badge badge-success">{{t 'installed'}}</span>{{/installed}}
|
|
</h2>
|
|
<p class="list-group-item-text">{{manifest.description}}</p>
|
|
{{#isUnofficial}}
|
|
<p class="list-group-item-text">{{t 'app_store'}} {{store}}</p>
|
|
<p class="list-group-item-text">{{t 'app_state'}} {{state}}</p>
|
|
{{/isUnofficial}}
|
|
</a>
|
|
{{/apps}}
|
|
|
|
{{^apps}}
|
|
<div class="alert alert-warning">
|
|
<span class="fa-exclamation-triangle"></span>
|
|
{{t 'no_installed_apps'}}
|
|
</div>
|
|
{{/apps}}
|
|
|
|
</div>
|
|
|
|
{{^installed_apps}}
|
|
<div class="panel panel-default">
|
|
<div class="panel-heading">
|
|
<h2 class="panel-title"><span class="fa-fw fa-download"></span> {{t 'custom_app_install'}}</h2>
|
|
</div>
|
|
<div class="panel-body">
|
|
<form action="#/apps/install/custom" method="POST" class="form-horizontal">
|
|
<div class="form-group has-feedback">
|
|
<label for="label" class="col-sm-12">{{t 'url'}}</label>
|
|
<div class="col-sm-12">
|
|
<input type="url" id="url" name="url" class="form-control" value="" placeholder="https://github.com/USER/REPOSITORY" required pattern="^https://github.com/[a-zA-Z0-9-_.]+/[a-zA-Z0-9-_.]+[/]?$">
|
|
<p class="text-warning">
|
|
<span class="fa-github"></span> {{t 'custom_app_url_only_github'}}
|
|
</p>
|
|
</div>
|
|
</div>
|
|
<div class="form-group">
|
|
<div class="text-center">
|
|
<input type="submit" class="btn btn-success slide" value="{{t 'install'}}">
|
|
</div>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
|
|
{{/installed_apps}}
|