Add link to photo page from admin index

This commit is contained in:
Cara Salter 2024-04-01 15:24:43 +11:00
parent 524da29a38
commit 66abec23d9
No known key found for this signature in database
GPG key ID: A8A3A601440EADA5
2 changed files with 3 additions and 6 deletions

View file

@ -4,4 +4,7 @@
<h1>Welcome to the Officer Dashboard!</h1>
<p>Use the navbar up top to navigate to a user dashboard, event dashboard, and
bulk mail tool (when/if it works...).</p>
<p>Update your Officer photo <a href="{{ url_for('admin.upload_photo')
}}">here</a>
{% endblock app_content %}

View file

@ -25,8 +25,6 @@
</div>
<!-- save btn -->
<button class="btn save hide">Save</button>
<!-- download btn -->
<a href="" class="btn download hide">Download</a>
</div>
<script src="{{ url_for('static', filename='js/jquery-3.6.3.min.js') }}" charset="utf-8"></script>
<script src='https://cdnjs.cloudflare.com/ajax/libs/cropperjs/0.8.1/cropper.min.js'></script>
@ -40,7 +38,6 @@ img_h = document.querySelector('.img-h'),
options = document.querySelector('.options'),
save = document.querySelector('.save'),
cropped = document.querySelector('.cropped'),
dwn = document.querySelector('.download'),
upload = document.querySelector('#file-input'),
cropper = '';
@ -95,9 +92,6 @@ save.addEventListener('click', e => {
window.location = `/admin/officer/${user_id}`
}
});
dwn.classList.remove('hide');
dwn.download = 'imagename.png';
dwn.setAttribute('href', imgSrc);
});
</script>
{% endblock %}