Remove duplicate functionality
- remove customer hosting package list - replace useless dashboard with redirect - move all hosting package list for superuser to top level menu item - replace btn-default with btn-secondary - improve email address management page
This commit is contained in:
parent
2d05580ed3
commit
866f6c8083
16 changed files with 142 additions and 214 deletions
|
@ -13,15 +13,15 @@
|
|||
placeholder="{% translate "user name part" %}" value="{% if query %}{{ query }}{% endif %}">
|
||||
</div>
|
||||
<button type="submit" class="btn btn-primary">{% translate "Search" %}</button>
|
||||
<a class="btn btn-secondary" href="{% url 'impersonate-list' %}">{% translate "List all users" %}</a>
|
||||
<a class="btn btn-link" href="{% url 'impersonate-list' %}">{% translate "List all users" %}</a>
|
||||
</form>
|
||||
|
||||
<p>
|
||||
{% if query and page.object_list %}
|
||||
<ul class="list-group">
|
||||
{% for user in page.object_list %}
|
||||
<li class="list-group-item"><a
|
||||
href="{% url 'impersonate-start' user.pk %}{{ redirect }}">{{ user }}</a> - Impersonate
|
||||
<li class="list-group-item"><a href="{% url 'impersonate-start' user.pk %}{{ redirect }}">
|
||||
{% blocktranslate %}Impersonate {{ user }}{% endblocktranslate %}</a>
|
||||
</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue