]> git.immae.eu Git - github/shaarli/Shaarli.git/blobdiff - tpl/default/pluginsadmin.html
Minor adjustments
[github/shaarli/Shaarli.git] / tpl / default / pluginsadmin.html
index ec0728bd987fa0ba6da85cd198ff8b82d144e9b9..ac38db97e4c4181dfaa787a2a0dafa9c3b71b5da 100644 (file)
   <div class="pure-g">
     <div class="pure-u-lg-1-6 pure-u-1-8"></div>
     <div class="pure-u-lg-2-3 pure-u-3-4 page-form page-form-complete">
-      <h2>{'Plugin administration'|t}</h2>
+      <h2 class="window-title">{'Plugin administration'|t}</h2>
 
       <section id="enabled_plugins">
-        <h3>{'Enabled Plugins'|t}</h3>
+        <h3 class="window-subtitle">{'Enabled Plugins'|t}</h3>
 
         <div>
           {if="count($enabledPlugins)==0"}
@@ -79,7 +79,7 @@
       </section>
 
       <section id="disabled_plugins">
-        <h3>{'Disabled Plugins'|t}</h3>
+        <h3 class="window-subtitle">{'Disabled Plugins'|t}</h3>
 
         <div>
           {if="count($disabledPlugins)==0"}
           </table>
           {/if}
         </div>
-
       </section>
 
+      <div class="center more">
+        More plugins available
+        <a href="doc/Community-&-Related-software.html#third-party-plugins">in the documentation</a>.
+      </div>
       <div class="center">
         <input type="submit" value="{'Save'|t}" name="save">
       </div>
   <div class="pure-g">
     <div class="pure-u-lg-1-6 pure-u-1-8"></div>
     <div class="pure-u-lg-2-3 pure-u-3-4 page-form page-form-light">
-      <h2>{'Plugin configuration'|t}</h2>
+      <h2 class="window-title">{'Plugin configuration'|t}</h2>
       <section id="plugin_parameters">
         <div>
           {if="count($enabledPlugins)==0"}
             {loop="$enabledPlugins"}
               {if="count($value.parameters) > 0"}
                 <div class="plugin_parameters">
-                  <h3>{function="str_replace('_', ' ', $key)"}</h3>
+                  <h3 class="window-subtitle">{function="str_replace('_', ' ', $key)"}</h3>
                   {loop="$value.parameters"}
                   <div class="plugin_parameter">
                     <div class="float_label">
                       <label for="{$key}">
                         <code>{$key}</code>
                         {if="isset($value.desc)"}
-                          {$value.desc}
+                          &middot; {$value.desc}
                         {/if}
                       </label>
                     </div>
                     <div class="float_input">
-                      <input name="{$key}" value="{$value}" id="{$key}" type="text" />
+                      <input name="{$key}" value="{$value.value}" id="{$key}" type="text" />
                     </div>
                   </div>
                   {/loop}