|
Revision 2105, 448 bytes
(checked in by taher, 2 months ago)
|
--
|
| Line | |
|---|
| 1 |
import validations |
|---|
| 2 |
|
|---|
| 3 |
from Form import * |
|---|
| 4 |
from Table import * |
|---|
| 5 |
from Module import * |
|---|
| 6 |
from consts import * |
|---|
| 7 |
|
|---|
| 8 |
class ModuleErrorNn (Module, FormHelper): |
|---|
| 9 |
PROPERTIES = [] |
|---|
| 10 |
|
|---|
| 11 |
def __init__ (self, cfg, prefix, submit_url): |
|---|
| 12 |
FormHelper.__init__ (self, 'error_nn', cfg) |
|---|
| 13 |
Module.__init__ (self, 'error_nn', cfg, prefix, submit_url) |
|---|
| 14 |
|
|---|
| 15 |
def _op_render (self): |
|---|
| 16 |
return '' |
|---|
| 17 |
|
|---|
| 18 |
def _op_apply_changes (self, uri, post): |
|---|
| 19 |
None |
|---|