Update recent_activity.html
This commit is contained in:
@@ -80,7 +80,7 @@
|
||||
<i class="fas fa-external-link-alt"></i>
|
||||
</a>
|
||||
{% elif event.event_type == 'user_create' or event.event_type == 'user_update' %}
|
||||
<a href="{{ url_for('contacts.contact', user_id=event.details.get('user_id')) }}" class="btn btn-sm btn-outline-primary" style="background-color: white; border: 1px solid var(--primary-color); color: var(--primary-color);" onmouseover="this.style.backgroundColor='var(--primary-color)'; this.querySelector('i').style.color='white'" onmouseout="this.style.backgroundColor='white'; this.querySelector('i').style.color='var(--primary-color)'">
|
||||
<a href="{{ url_for('contacts.edit_contact', id=event.details.get('user_id')) }}" class="btn btn-sm btn-outline-primary" style="background-color: white; border: 1px solid var(--primary-color); color: var(--primary-color);" onmouseover="this.style.backgroundColor='var(--primary-color)'; this.querySelector('i').style.color='white'" onmouseout="this.style.backgroundColor='white'; this.querySelector('i').style.color='var(--primary-color)'">
|
||||
<i class="fas fa-external-link-alt"></i>
|
||||
</a>
|
||||
{% endif %}
|
||||
|
||||
Reference in New Issue
Block a user