Skip to content
Snippets Groups Projects
Verified Commit ccc1af47 authored by ornanovitch's avatar ornanovitch
Browse files

Merge branch...

Merge branch '82-doublon-de-certaines-actions-dans-les-pages-details-des-services-et-profils' into layout-fixes
parents d8d28a97 0c269980
No related branches found
No related tags found
No related merge requests found
...@@ -12,10 +12,10 @@ ...@@ -12,10 +12,10 @@
<dt class="col-lg-3">{% trans %}Username{% endtrans %}</dt> <dt class="col-lg-3">{% trans %}Username{% endtrans %}</dt>
<dd class="col-lg-9">{{ profile.username }}</dd> <dd class="col-lg-9">{{ profile.username }}</dd>
{% if profile.user %} {% if profile.user %}
<dt class="col-lg-3">{% trans %}Owner{% endtrans %}</dt> <dt class="col-lg-3">{% trans %}Owner{% endtrans %}</dt>
<dd class="col-lg-9"><a href="{{ url_for("user.details", user_uuid=profile.user_uuid) }}">{{ profile.user.username }}</a></dd> <dd class="col-lg-9"><a href="{{ url_for("user.details", user_uuid=profile.user_uuid) }}">{{ profile.user.username }}</a></dd>
{% endif %} {% endif %}
<dt class="col-lg-3">{% trans %}UUID{% endtrans %}</dt> <dt class="col-lg-3">{% trans %}UUID{% endtrans %}</dt>
<dd class="col-lg-9"><pre>{{ profile.uuid }}</pre></dd> <dd class="col-lg-9"><pre>{{ profile.uuid }}</pre></dd>
...@@ -29,23 +29,6 @@ ...@@ -29,23 +29,6 @@
</div> </div>
</div> </div>
</div> </div>
<div class="col-md-6 col">
<div class="card">
<div class="card-header">
<h4>{% trans %}Actions{% endtrans %}</h4>
</div>
<div class="card-body">
<dl class="row">
{% for action in profile.actions %}
<dt class="col-3"><a href="{{ action.url(profile) }}">{{ action.label | capitalize }}</a></dt>
<dd class="col-9">{{ action.description | capitalize }}</dd>
{% endfor %}
</dl>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-6 col"> <div class="col-md-6 col">
{{ macros.timeline(profile.history, public_only=False) }} {{ macros.timeline(profile.history, public_only=False) }}
</div> </div>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment