index.html 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. {% extends "nm-base.html" %}
  2. {% load i18n %}
  3. {% block content %}
  4. <h1>{% trans "Debian New Members" %}</h1>
  5. <p>
  6. {% blocktrans %}Welcome to the New Members administration website.{% endblocktrans %}
  7. {% blocktrans %}This is the place to apply for Debian membership, manage an existing application and find out information about members who have completed the process.{% endblocktrans %}
  8. </p>
  9. <p>
  10. {% blocktrans %}This is <b>not</b> the place to start if you wish to make a contribution to Debian. Try the <a href="https://www.debian.org/devel/join/">developer's corner</a> instead.{% endblocktrans %}
  11. <h2>{% trans "Quick Start" %}</h2>
  12. <p>
  13. {% url 'wizard_home' as wizurl %}
  14. {% blocktrans %}For quick access to common tasks, try the <a href="{{ wizurl }}">site wizard</a>.{% endblocktrans %}
  15. </p>
  16. {% trans "General site features, available to all:" %}
  17. <ul>
  18. <li><a href="{% url 'people' %}">{% trans "List of all known people" %}</a></li>
  19. <li><a href="{% url 'managers' %}">{% trans "List of Application Managers" %}</a></li>
  20. <li><a href="{% url 'processes' %}">{% trans "List of open or recent processes" %}</a></li>
  21. <li><a href="{% url 'public_stats' %}">{% trans "Site statistics" %}</a></li>
  22. <li><a href="{% url 'public_newnm' %}">{% trans "Join the NM process" %}</a>
  23. </ul>
  24. {% trans "Site features available to anyone with a web password:" %}
  25. <ul>
  26. <li><a href="{% url 'restricted_minechangelogs' %}">minechangelogs {% trans "front-end" %}</a></li>
  27. </ul>
  28. {% trans "If you are an Application Manager, you can look at:" %}
  29. <ul>
  30. <li><a href="{% url 'restricted_ammain' %}">{% trans "AM main page" %}</a></li>
  31. <li><a href="{% url 'restricted_amprofile' %}">{% trans "AM personal settings" %}</a></li>
  32. <li><a href="{% url 'restricted_db_export' %}">{% trans "Database export you can use to setup a development site" %}</a></li>
  33. </ul>
  34. <h2>{% trans "Contact" %}</h2>
  35. <p>{% blocktrans %}The <a href="https://wiki.debian.org/Teams/FrontDesk">Debian Front Desk</a> is the team responsible for the running of the NM process: you can contact them at <a href="mailto:nm@debian.org">nm@debian.org</a>{% endblocktrans %}</p>
  36. {% blocktrans %}If you would like to help with site development, have a look at
  37. <a href="https://wiki.debian.org/Teams/FrontDesk/NmSiteDevel">the TODO list</a> and the list of <a href="https://bugs.debian.org/cgi-bin/pkgreport.cgi?pkg=nm.debian.org;dist=unstable">bugs for the nm.d.o website</a>{% endblocktrans %}
  38. {% endblock %}