diff options
Diffstat (limited to 'view')
-rw-r--r-- | view/group_selection.tpl | 5 | ||||
-rw-r--r-- | view/pagetypes.tpl | 3 | ||||
-rw-r--r-- | view/settings.tpl | 6 |
3 files changed, 14 insertions, 0 deletions
diff --git a/view/group_selection.tpl b/view/group_selection.tpl new file mode 100644 index 000000000..d09ba676d --- /dev/null +++ b/view/group_selection.tpl @@ -0,0 +1,5 @@ +<select name="group-selection" id="group-selection"> +{{ for $groups as $group }} +<option value="$group.id" {{ if $group.selected }}selected="selected"{{ endif }} >$group.name</option> +{{ endfor }} +</select> diff --git a/view/pagetypes.tpl b/view/pagetypes.tpl index d9f873ea0..924fc47ac 100644 --- a/view/pagetypes.tpl +++ b/view/pagetypes.tpl @@ -2,3 +2,6 @@ {{inc field_radio.tpl with $field=$page_soapbox }}{{endinc}} {{inc field_radio.tpl with $field=$page_community }}{{endinc}} {{inc field_radio.tpl with $field=$page_freelove }}{{endinc}} + {{ if $experimental }} + {{inc field_radio.tpl with $field=$page_prvgroup }}{{endinc}} + {{ endif }}
\ No newline at end of file diff --git a/view/settings.tpl b/view/settings.tpl index cec3c6f64..e25d67463 100644 --- a/view/settings.tpl +++ b/view/settings.tpl @@ -56,9 +56,12 @@ $suggestme $unkmail + {{inc field_input.tpl with $field=$cntunkmail }}{{endinc}} {{inc field_input.tpl with $field=$expire.days }}{{endinc}} + + <div class="field input"> <span class="field_help"><a href="#advanced-expire-popup" id="advanced-expire" class='popupbox' title="$expire.advanced">$expire.label</a></span> <div style="display: none;"> @@ -90,6 +93,9 @@ $unkmail <br/> <div id="settings-default-perms-end"></div> +<label name="group-selection-lbl" for="group-selection">$group_lbl_select</label> +$group_select + <div class="settings-submit-wrapper" > <input type="submit" name="submit" class="settings-submit" value="Submit" /> |