This website requires JavaScript.
Explore
Help
Sign In
Mirror
/
zulip
mirror of
https://github.com/zulip/zulip.git
Watch
1
Star
0
Fork
You've already forked zulip
0
Code
Issues
Projects
Releases
Wiki
Activity
8b3f8d77b0
zulip
/
web
/
templates
/
settings
/
dropdown_options_widget.hbs
4 lines
98 B
Handlebars
Raw
Normal View
History
Unescape
Escape
settings_org: Extract the "options" code as template. This is a preliminary commit for upcoming change where we will use "bot_creation_policy_values" like approach for many other settings where dropdown represents the only single setting of integer type.
2020-01-22 19:01:51 +01:00
{{
#
each
option_values
}}
templates: Always indent "each" blocks.
2021-12-04 15:39:38 +01:00
<option value='
{{
this
.code
}}
'>
{{
this
.description
}}
</option>
settings_org: Extract the "options" code as template. This is a preliminary commit for upcoming change where we will use "bot_creation_policy_values" like approach for many other settings where dropdown represents the only single setting of integer type.
2020-01-22 19:01:51 +01:00
{{
/
each
}}