nk20/templates/member/profile_detail.html

19 lines
539 B
HTML
Raw Normal View History

{% extends "member/noteowner_detail.html" %}
2019-08-14 13:16:03 +00:00
{% block profile_info %}
{% include "member/profile_info.html" %}
2020-02-21 10:53:37 +00:00
{% endblock %}
{% block profile_content %}
{% include "member/profile_tables.html" %}
{% endblock %}
2020-04-06 17:51:39 +00:00
{% block extrajavascript %}
<script>
function refreshHistory() {
$("#history_list").load("{% url 'member:user_detail' pk=user_object.pk %} #history_list");
$("#profile_infos").load("{% url 'member:user_detail' pk=user_object.pk %} #profile_infos");
2020-04-06 17:51:39 +00:00
}
</script>
{% endblock %}