liquid_feedback_frontend
view 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 |
line source
1 local opinions_selector = param.get("opinions_selector", "table")
3 ui.list{
4 records = opinions_selector:exec(),
5 columns = {
6 {
7 label = _"Member login",
8 name = "member_login"
9 },
10 {
11 label = _"Member name",
12 name = "member_name"
13 },
14 {
15 label = _"Degree",
16 name = "degree"
17 },
18 {
19 label = _"Fulfilled",
20 name = "fulfilled"
21 },
22 }
23 }
