Statistics
| Branch: | Tag: | Revision:

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

History | View | Annotate | Download (627 Bytes)

1
<div class="msg-wrap {% if inline %}inline{% endif %}">
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
</form>
10
<div class="dialog" style="display: none">
11
  <div class="dialog-content">
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
</div>
20
{% else %}
21
<a href="{{ url }}">{{ action }}</a>
22
{% endif %}
23
{% else %}
24
{{ action }}
25
{% endif %}
26
</div>