show.html.twig 730 B

12345678910111213141516171819
  1. {% extends "PackagistWebBundle::layout.html.twig" %}
  2. {% import "PackagistWebBundle::macros.html.twig" as macros %}
  3. {% block content %}
  4. <div class="box clearfix">
  5. <h1>{{ user.username }} (that's you!)</h1>
  6. <p><a href="{{ path('fos_user_profile_edit') }}">Edit your information</a></p>
  7. <p><a href="{{ path('fos_user_change_password') }}">Change your password</a></p>
  8. <p><a href="{{ path('user_profile', {'name':app.user.username}) }}">View your public profile</a></p>
  9. <h1>Your packages</h1>
  10. {% if user.packages|length %}
  11. {{ macros.listPackages(user.packages) }}
  12. {% else %}
  13. <p>No packages found.</p>
  14. {% endif %}
  15. </div>
  16. {% endblock %}