Parent: [c4109f] (diff)

Child: [cd6847] (diff)

Download this file

index.html    26 lines (21 with data), 606 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{% set hide_left_bar = True %}
{% extends g.theme.master %}
{% block title %}{{c.project.name}} Activity{% endblock %}
{% block header %}
Activity for
{% if c.project.is_user_project %}
{{c.project.user_project_of.display_name}}
{% else %}
{{c.project.name}}
{% endif %}
{% endblock %}
{% block actions %}
{% if c.user and c.user != c.user.anonymous() and followee != c.user %}
{{c.follow_toggle.display(following=following)}}
{% endif %}
{% endblock %}
{% block content %}
<div class="grid-14">
Something happened.
</div>
{% endblock %}