Skip to content
This repository has been archived by the owner on Oct 6, 2021. It is now read-only.

Commit

Permalink
Group fields in airship-classic config by cabin.
Browse files Browse the repository at this point in the history
  • Loading branch information
paragonie-security committed Aug 28, 2016
1 parent 4b16749 commit aa28228
Showing 1 changed file with 25 additions and 15 deletions.
40 changes: 25 additions & 15 deletions src/Motifs/paragonie/airship-classic/lens/config.twig
@@ -1,16 +1,26 @@
<div class="multiline_checkbox_container">
<div class="multiline_checkbox">
<input
id="motif-config-bridge-gradient"
type="checkbox"
name="motif_config[bridge][gradient]"
value="1"
{% if motif_config['bridge']['gradient'] %}
checked="checked"
{% endif %}
/>
<label for="motif-config-bridge-gradient">
{{ __("Metallic look?") }}
</label>
<fieldset>
<legend><h3 class="nomargin">{{ __("Bridge") }}</h3></legend>

<div class="multiline_checkbox_container">
<div class="multiline_checkbox">
<input
id="motif-config-bridge-gradient"
type="checkbox"
name="motif_config[bridge][gradient]"
value="1"
{% if motif_config['bridge']['gradient'] %}
checked="checked"
{% endif %}
/>
<label for="motif-config-bridge-gradient">
{{ __("Metallic look? (Uncheck for a flat background color.)") }}
</label>
</div>
</div>
</div>
</fieldset>

<fieldset>
<legend><h3 class="nomargin">{{ __("Hull") }}</h3></legend>

{{ __("No configurable options yet.") }}
</fieldset>

0 comments on commit aa28228

Please sign in to comment.