Statistics
| Branch: | Tag: | Revision:

root / snf-astakos-app / astakos / im / templates / im / table_rich_link_column.html @ e87bbb41

History | View | Annotate | Download (528 Bytes)

1
<div class="msg-wrap">
2
{% if confirm %}
3
<form method="{{ col.method }}" 
4
  action="{{ url }}#{{ table.attr.id }}"
5
  class="link-like">
6
  {% csrf_token %}
7
<input type="submit" value="{{ action }}" class="join_group join"
8
  autocomplete="off" />
9
</form>
10
<div class="dialog" style="display: none">
11
  {{ prompt }}
12
  <br />
13
  <br />
14
<a href="#" class="yes submit">{{ col.confirm_prompt }}</a>
15
&nbsp; 
16
<a href="#" class="no submit">{{ col.cancel_prompt }}</a>
17
</div>
18
{% else %}
19
<a href="{{ url }}">{{ action }}</a>
20
{% endif %}
21
</div>