{% extends 'base.html' %} {% block title %}{{ 'Edit' if user else 'Create' }} User | Admin | {{ settings.site_name }}{% endblock %} {% block content %}

{{ 'Edit User' if user else 'Create User' }}

{% if user %}Leave blank to keep current password{% else %}Minimum 8 characters{% endif %}
{% if user and user.id == current_user.id %}
You cannot change your own role
{% endif %}
{% if user and user.id == current_user.id %} {% endif %}

Cancel
Role Permissions
Admin
  • Manage all users
  • Manage journals and articles
  • Review submissions
  • Edit site settings
  • Manage content and images
Editor
  • Manage articles
  • Review submissions
  • Respond to messages
  • Cannot manage users
  • Cannot edit settings
{% endblock %}