Example #1
0
def option_manage_post():
    '''站点基本设置POST数据'''
    return OptionsService.update('%s%s' % (MEMCACHE_KEY, '_option'))
Example #2
0
def option_manage_post():
    '''站点基本设置POST数据'''
    return OptionsService.update('%s%s'%(MEMCACHE_KEY, '_option'))
Example #3
0
def option_manage():
    '''站点基本设置'''
    _data = OptionsService.get_option('%s%s' % (MEMCACHE_KEY, '_option'))
    return template("admin/option.html", handler=get_site_info(), data=_data)
Example #4
0
def option_manage():
    '''站点基本设置'''
    _data = OptionsService.get_option('%s%s'%(MEMCACHE_KEY, '_option'))
    return template("admin/option.html", handler=get_site_info(), data=_data)