blob: 0ea3a20e90e3273da3dec92439e3ccfd96ca34ef [file] [log] [blame]
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
from allura.lib import validators as V
from allura.lib.widgets.forms import ForgeForm
from formencode import validators as fev
import ew as ew_core
import ew.jinja2_ew as ew
class StatsPreferencesForm(ForgeForm):
defaults=dict(ForgeForm.defaults)
class fields(ew_core.NameList):
visible = ew.Checkbox(
label='Make my personal statistics visible to other users.')
def display(self, **kw):
if kw.get('user').stats.visible:
self.fields['visible'].attrs = {'checked':'true'}
else:
self.fields['visible'].attrs = {}
return super(ForgeForm, self).display(**kw)