Statistics
| Branch: | Tag: | Revision:

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

History | View | Annotate | Download (577 Bytes)

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