Development of an internal social media platform with personalised dashboards for students
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

change_list_object_tools.html 370B

123456789101112
  1. {% load i18n admin_urls %}
  2. {% block object-tools-items %}
  3. {% if has_add_permission %}
  4. <li>
  5. {% url cl.opts|admin_urlname:'add' as add_url %}
  6. <a href="{% add_preserved_filters add_url is_popup to_field %}" class="addlink">
  7. {% blocktrans with cl.opts.verbose_name as name %}Add {{ name }}{% endblocktrans %}
  8. </a>
  9. </li>
  10. {% endif %}
  11. {% endblock %}