Skip to content
Snippets Groups Projects
Commit 36a87554 authored by Todd Dembrey's avatar Todd Dembrey
Browse files

Update templates to reflect changes to activity type to action

parent 8b7e7bd7
No related branches found
No related tags found
No related merge requests found
{% for action in actions %}
<div>
<p>{{ action.timestamp }}</p>
<p>{{ action.user }}</p>
<p>{{ action.message }}</p>
</div>
{% endfor %}
{% for event in activity %}
<div>
<p>{{ event.timestamp }}</p>
<p>{{ event.user }}</p>
<p>{{ event.message }}</p>
</div>
{% endfor %}
...@@ -62,7 +62,7 @@ ...@@ -62,7 +62,7 @@
{% endif %} {% endif %}
{% include "activity/include/comment_form.html" %} {% include "activity/include/comment_form.html" %}
{% include "activity/include/comment_list.html" %} {% include "activity/include/comment_list.html" %}
{% include "activity/include/activity_list.html" %} {% include "activity/include/action_list.html" %}
</aside> </aside>
</div> </div>
</div> </div>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment