Statistics
| Branch: | Tag: | Revision:

root / snf-astakos-app / astakos / im / templates / im / projects / project_members.html @ 3f3dc4b7

History | View | Annotate | Download (1.2 kB)

1
{% extends "im/projects/project_detail.html" %}
2
  
3
 
4
{% load astakos_tags filters django_tables2 %}
5

    
6

    
7
{% block inner_project %} 
8
   
9
  {% if owner_mode and project_view %}
10
    {% if object.project.is_alive %}
11
      
12
      <div class="full-dotted">
13
        <h3> 
14
          <a href="#members-table" class="rt-action">ADD MORE MEMBERS</a>
15
          MEMBERS  
16
 
17
        <div class="project-actions">
18
          <a href="{% url project_members object.chain %}"  {% if  == None %}class="inactive"{% endif %}>ALL</a> -
19
          <a href="{% url project_approved_members object.chain %}" {% if  == 1 %}class="inactive"{% endif %}>APPROVED</a> -
20
          <a href="{% url project_pending_members object.chain %}" {% if  == 0 %}class="inactive"{% endif %}>PENDING</a>
21

    
22
        </div>
23
        </h3>
24
        
25
        {% if members_table %}
26
        {% render_table members_table %}
27
        {% endif %}
28
        
29
      </div>
30

    
31
     
32
      {% if not project.is_deactivated %}
33
        <div class="full-dotted">
34
          
35
    {% include 'im/projects/addmembers_form.html' %}
36
        </div>
37
      {% endif %}
38
    {% endif %}
39

    
40
     
41
     
42
    
43
  {% endif %}
44
{% endblock inner_project %} 
45
   
46