Statistics
| Branch: | Tag: | Revision:

root / snf-astakos-app / astakos / im / templates / im / projects / _project_detail_actions.html @ 9efd0075

History | View | Annotate | Download (772 Bytes)

1
{% load astakos_tags i18n %}
2

    
3
<!-- make room for buttons -->
4
{% if owner_mode or admin_mode or can_join_request or can_leave_request %}
5
<br />
6
{% endif %}
7

    
8
<div class="project-actions">
9
{% if owner_mode or admin_mode %}
10
{% if object.can_modify %}
11
<div class="msg-wrap inline">
12
  <a class="" href="{% url project_modify project_uuid=object.uuid %}">MODIFY</a> 
13
</div>
14
{% endif %}
15
{% endif %}
16

    
17
{% if can_join_request %}
18
{% confirm_link "JOIN" "project_join" "project_join" project.uuid %}
19
{% endif %}
20

    
21
{% if can_leave_request %}
22
{% confirm_link "LEAVE" "project_leave" "project_leave" project.uuid %}
23
{% endif %}
24

    
25
{% if can_cancel_join_request %}
26
{% confirm_link "CANCEL JOIN REQUEST" "project_cancel_member" "project_cancel_join" project.uuid "" "OK" %}
27
{% endif %}
28
</div>