mirror of
https://github.com/nottinghamtec/PyRIGS.git
synced 2026-01-17 05:22:16 +00:00
Also: - Find and replace panel -> card - Some base template work - gulpfile things, added dep on django-gulp
10 lines
388 B
HTML
10 lines
388 B
HTML
{% extends 'base_client_email.html' %}
|
|
|
|
{% block content %}
|
|
<p>Hi {{ to_name|default_if_none:"Administrator" }},</p>
|
|
|
|
<p>{{ number_of_users|default_if_none:"Some" }} new users are awaiting administrator approval on RIGS. Click <a href="{{ request.scheme }}://{{ request.get_host }}{{ link_suffix }}">here</a> to approve them.</p>
|
|
|
|
<p>TEC PA & Lighting</p>
|
|
{% endblock %}
|