Statistics
| Branch: | Tag: | Revision:

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

History | View | Annotate | Download (588 Bytes)

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