Add extra button to make life more enjoyable :) (#1352)

* Add extra button to make life more enjoyable :)

The process of wanting to install multiple plugins is kinda hard right now, because you'd have to return back to the plugins, and select 'add' again every time you'd want to install a new plugin after previous install..

With the extra button provided, after installing a plugin you can return back to the install section of the admin plugins and install more plugins directly from there without the need to make extra clicks every time.

* Changed lang string to `ADD`
This commit is contained in:
Robbert
2018-03-09 02:20:14 +01:00
committed by Andy Miller
parent 963ca2f5a6
commit cb7167cbf6

View File

@@ -53,6 +53,7 @@
{% if (installed) %}
<div class="button-bar">
<a class="button" href="{{ base_url_relative }}/plugins"><i class="fa fa-arrow-left"></i> {{ "PLUGIN_ADMIN.BACK_TO_PLUGINS"|tu }}</a>
<a class="button" href="{{ base_url_relative }}/plugins/install"><i class="fa fa-plus"></i> {{ "PLUGIN_ADMIN.ADD"|tu }}</a>
{% include 'plugins/'~admin.route~'-buttons.html.twig' ignore missing %}
<button class="button" type="submit" name="task" value="save" form="blueprints"><i class="fa fa-check"></i> {{ "PLUGIN_ADMIN.SAVE"|tu }}</button>
</div>