summaryrefslogtreecommitdiffstats
path: root/dashboard/src/templates/account/resource_list.html
blob: 7e4194b9c37fd6fa5e40e54e98c9ad19de0a5fb1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{% extends "base.html" %}
{% block content %}
<script>
function edit_resource(pk){
    var csrf = $('input[name="csrfmiddlewaretoken"]').val();
    $.ajax({
        type: "POST",
        url: "/",
        data: { "target": pk, "create": 1, "csrfmiddlewaretoken": csrf},
        beforeSend: function(request) {
            request.setRequestHeader("X-CSFRToken", csrf);
            }
        }).done(function(){
            window.location.replace("/wf/");
        }).fail(function(){});
}
</script>
    {% for resource in resources %}
        <div class="detail_card">
            <ul>
                <li>id: {{resource.id}}</li>
                <li>name: {{resource.name}}</li>
                <li>description: {{resource.description}}</li>
            </ul>
            <div class="detail_btn_group">
                <button style="display: none" class="btn btn-primary" onclick="edit_resource({{resource.id}});">Edit</button>
            </div>
        </div>
    {% endfor %}
{% endblock %}