liquid_feedback_frontend
diff app/main/policy/show.lua @ 1234:8288027edb54
Added support for min_admission_time and max_admission_time
author | bsw |
---|---|
date | Fri Dec 04 14:19:28 2015 +0100 (2015-12-04) |
parents | eb16d41929bd |
children |
line diff
1.1 --- a/app/main/policy/show.lua Tue Dec 01 18:33:06 2015 +0100 1.2 +++ b/app/main/policy/show.lua Fri Dec 04 14:19:28 2015 +0100 1.3 @@ -9,7 +9,8 @@ 1.4 if policy.polling then 1.5 ui.field.text{ label = _"New" .. ":", value = _"without" } 1.6 else 1.7 - ui.field.text{ label = _"New" .. ":", value = "≤ " .. policy.admission_time } 1.8 + ui.field.text{ label = _"New" .. ":", value = "≤ min " .. policy.min_admission_time } 1.9 + ui.field.text{ label = _"New" .. ":", value = "≤ max " .. policy.max_admission_time } 1.10 end 1.11 ui.field.text{ label = _"Discussion" .. ":", value = policy.discussion_time or _"variable" } 1.12 ui.field.text{ label = _"Frozen" .. ":", value = policy.verification_time or _"variable" }