2020-03-25 15:11:44 +00:00
|
|
|
{% extends "member/noteowner_detail.html" %}
|
2019-08-14 13:16:03 +00:00
|
|
|
|
2020-03-25 15:11:44 +00:00
|
|
|
{% block profile_info %}
|
|
|
|
{% include "member/profile_info.html" %}
|
2020-02-21 10:53:37 +00:00
|
|
|
{% endblock %}
|
2020-03-16 09:39:16 +00:00
|
|
|
|
2020-03-25 15:11:44 +00:00
|
|
|
{% block profile_content %}
|
|
|
|
{% include "member/profile_tables.html" %}
|
2020-03-16 09:39:16 +00:00
|
|
|
{% endblock %}
|
2020-04-06 17:51:39 +00: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 %}
|