2020-03-25 16:11:44 +01:00
|
|
|
{% extends "member/noteowner_detail.html" %}
|
2019-08-14 15:16:03 +02:00
|
|
|
|
2020-03-25 16:11:44 +01:00
|
|
|
{% block profile_info %}
|
|
|
|
{% include "member/profile_info.html" %}
|
2020-02-21 11:53:37 +01:00
|
|
|
{% endblock %}
|
2020-03-16 10:39:16 +01:00
|
|
|
|
2020-03-25 16:11:44 +01:00
|
|
|
{% block profile_content %}
|
|
|
|
{% include "member/profile_tables.html" %}
|
2020-03-16 10:39:16 +01:00
|
|
|
{% endblock %}
|
2020-04-06 19:51:39 +02:00
|
|
|
|
|
|
|
{% block extrajavascript %}
|
|
|
|
<script>
|
|
|
|
function refreshHistory() {
|
|
|
|
$("#history_list").load("{% url 'member:user_detail' pk=object.pk %} #history_list");
|
|
|
|
$("#profile_infos").load("{% url 'member:user_detail' pk=object.pk %} #profile_infos");
|
|
|
|
}
|
|
|
|
|
|
|
|
window.history.replaceState({}, document.title, location.pathname);
|
|
|
|
</script>
|
|
|
|
{% endblock %}
|