2016-06-02 11:05:42 +05:30
|
|
|
.row.prepend-top-default.append-bottom-default
|
2017-09-10 17:25:29 +05:30
|
|
|
.col-lg-4
|
|
|
|
= render "ci/variables/content"
|
|
|
|
.col-lg-8
|
2016-06-02 11:05:42 +05:30
|
|
|
%h5.prepend-top-0
|
|
|
|
Add a variable
|
2017-09-10 17:25:29 +05:30
|
|
|
= render "ci/variables/form", btn_text: "Add new variable"
|
2016-06-02 11:05:42 +05:30
|
|
|
%hr
|
|
|
|
%h5.prepend-top-0
|
2017-09-10 17:25:29 +05:30
|
|
|
Your variables (#{@variables.size})
|
|
|
|
- if @variables.empty?
|
2016-06-02 11:05:42 +05:30
|
|
|
%p.settings-message.text-center.append-bottom-0
|
|
|
|
No variables found, add one with the form above.
|
|
|
|
- else
|
2017-09-10 17:25:29 +05:30
|
|
|
= render "ci/variables/table"
|
2017-08-17 22:00:37 +05:30
|
|
|
%button.btn.btn-info.js-btn-toggle-reveal-values{ "data-status" => 'hidden' } Reveal Values
|