Added more details to items per page help text

"Items per page" value setting is applicable only to those pages 
that have API supported pagination.  For example, if "Items per page"
value is set to say "3" and if we go to Admin > Identity Panel > Users
page, more than "3" items will be displayed if present.  This is
confusing to users.  So as part of this commit, the help text is modified
to reflect this limitation.

Change-Id: Ibbd4771829f0c312134eb275c797780be2b78410
Closes-Bug: 1431364
This commit is contained in:
Ganesh Narayanan 2015-04-15 07:09:33 -07:00 committed by Ganesh
parent 0dac90523b
commit bd3ec44a46

View File

@ -43,7 +43,9 @@ class UserSettingsForm(forms.SelfHandlingForm):
'API_RESULT_LIMIT',
1000),
help_text=_("Number of items to show per "
"page"))
"page (applies to the pages "
"that have API supported "
"pagination)"))
instance_log_length = forms.IntegerField(
label=_("Log Lines Per Instance"), min_value=1,
help_text=_("Number of log lines to be shown per instance"))