templates/send_sgd_cnf.html
branchanoop
changeset 108 9363e5121f9b
child 116 54ced1b9e010
equal deleted inserted replaced
107:9fd140628988 108:9363e5121f9b
       
     1 {% extends 'base.html' %}
       
     2 {% block title %}
       
     3 Send Event Participation Confirmation
       
     4 {% endblock %}
       
     5 {% block content %}
       
     6 <form action="" method=post>
       
     7 Not Selected ppl: <br >
       
     8 <table cellspacing=2 cellpadding=2>
       
     9 {% for m in not_selected %}
       
    10 <tr>
       
    11 <td> <input type="checkbox" name="selected_users" value="{{m.id}}" id="id_selected_users_0" /> </td>
       
    12 <td> {{m}} </td>
       
    13 <td> {{m.gender}} </td>
       
    14 <td> {{m.profession}}</td>
       
    15 <td> {{m.affiliated_to}} </td>
       
    16 </tr>
       
    17 {% endfor %}
       
    18 </table>
       
    19 <br />
       
    20 Not Confirmed Ppl: <br />
       
    21 <table cellspacing=2 cellpadding=2>
       
    22 {% for m in not_confirmed %}
       
    23 <tr>
       
    24 <td> <input type="checkbox" name="selected_users" value="{{m.id}}" id="id_selected_users_0" /> </td>
       
    25 <td> {{m}} </td>
       
    26 <td> {{m.gender}} </td>
       
    27 <td> {{m.profession}}</td>
       
    28 <td> {{m.affiliated_to}} </td>
       
    29 </tr>
       
    30 {% endfor %}
       
    31 </table>
       
    32 
       
    33 <input type=submit value=send />
       
    34 </form>
       
    35 
       
    36 Attending Ppl: <br />
       
    37 <table cellspacing=2 cellpadding=2>
       
    38 {% for m in attending %}
       
    39 <tr>
       
    40 <td> {{m}} </td>
       
    41 <td> {{m.gender}} </td>
       
    42 <td> {{m.profession}}</td>
       
    43 <td> {{m.affiliated_to}} </td>
       
    44 </tr>
       
    45 {% endfor %}
       
    46 </table>
       
    47 
       
    48 {% endblock %}
       
    49