2020-04-11 22:06:20 +00:00
|
|
|
{% extends "member/noteowner_detail.html" %}
|
|
|
|
|
|
|
|
{% block profile_info %}
|
|
|
|
{% include "wei/weiclub_info.html" %}
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block profile_content %}
|
2020-04-12 00:07:13 +00:00
|
|
|
{% include "wei/weiclub_tables.html" %}
|
2020-04-11 22:06:20 +00:00
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block extrajavascript %}
|
|
|
|
<script>
|
|
|
|
function refreshHistory() {
|
2020-04-12 00:07:13 +00:00
|
|
|
$("#history_list").load("{% url 'wei:wei_detail' pk=object.pk %} #history_list");
|
|
|
|
$("#profile_infos").load("{% url 'wei:wei_detail' pk=object.pk %} #profile_infos");
|
2020-04-11 22:06:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
window.history.replaceState({}, document.title, location.pathname);
|
|
|
|
</script>
|
|
|
|
{% endblock %}
|