liquid_feedback_frontend
annotate app/main/opinion/_list.lua @ 5:afd9f769c7ae
Version beta1
Final voting with Schulze-Method is now possible
Many bug fixes and code cleanup
Registration with invite codes
More sort and filter options
Seperated display of "supporters" and "potential supporters"
Optical changes
Flood limit / initiative contigent is now checked by frontend
Neccessary changes to access core beta11
Final voting with Schulze-Method is now possible
Many bug fixes and code cleanup
Registration with invite codes
More sort and filter options
Seperated display of "supporters" and "potential supporters"
Optical changes
Flood limit / initiative contigent is now checked by frontend
Neccessary changes to access core beta11
| author | bsw/jbe |
|---|---|
| date | Fri Dec 25 12:00:00 2009 +0100 (2009-12-25) |
| parents | 3bfb2fcf7ab9 |
| children | 8d91bccab0bf |
| rev | line source |
|---|---|
| bsw/jbe@0 | 1 local opinions_selector = param.get("opinions_selector", "table") |
| bsw/jbe@0 | 2 |
| bsw/jbe@0 | 3 ui.list{ |
| bsw/jbe@0 | 4 records = opinions_selector:exec(), |
| bsw/jbe@0 | 5 columns = { |
| bsw/jbe@0 | 6 { |
| bsw/jbe@0 | 7 label = _"Member login", |
| bsw/jbe@0 | 8 name = "member_login" |
| bsw/jbe@0 | 9 }, |
| bsw/jbe@0 | 10 { |
| bsw/jbe@0 | 11 label = _"Member name", |
| bsw/jbe@0 | 12 name = "member_name" |
| bsw/jbe@0 | 13 }, |
| bsw/jbe@0 | 14 { |
| bsw/jbe@0 | 15 label = _"Degree", |
| bsw/jbe@0 | 16 name = "degree" |
| bsw/jbe@0 | 17 }, |
| bsw/jbe@0 | 18 { |
| bsw/jbe@0 | 19 label = _"Fulfilled", |
| bsw/jbe@0 | 20 name = "fulfilled" |
| bsw/jbe@0 | 21 }, |
| bsw/jbe@0 | 22 } |
| bsw/jbe@0 | 23 } |