show.html.twig 546 B

1234567891011121314151617
  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>This is your profile. You can <a href="{{ path('fos_user_profile_edit') }}">edit</a>.</p>
  7. <h1>Your packages</h1>
  8. {% if user.packages|length %}
  9. {{ macros.listPackages(user.packages) }}
  10. {% else %}
  11. <p>No packages found.</p>
  12. {% endif %}
  13. </div>
  14. {% endblock %}