2010-01-24 03:48:25 +00:00
|
|
|
- if (constant_defs = constants(@item)).any?
|
2010-03-17 15:42:40 +00:00
|
|
|
- variables = constant_defs.select{|d| d.guarded }
|
|
|
|
- constants = constant_defs.reject{|d| d.guarded }
|
|
|
|
- if variables.any?
|
|
|
|
%h2
|
|
|
|
Configurable Variables
|
2010-11-22 01:30:41 +00:00
|
|
|
%a(href="/help/tutorials/configurable-variables/" class="help") help
|
2010-03-17 15:42:40 +00:00
|
|
|
= render "partials/reference/const_table", :constants => variables
|
|
|
|
|
|
|
|
- if constants.any?
|
|
|
|
%h2 Constants
|
|
|
|
= render "partials/reference/const_table", :constants => constants
|