mirror of
https://github.com/YGGverse/YGGtracker.git
synced 2026-04-02 10:05:33 +00:00
move containers inside the main_content block
This commit is contained in:
parent
36329b0b81
commit
fbeb793f6d
2 changed files with 179 additions and 175 deletions
|
|
@ -1,6 +1,7 @@
|
||||||
{% extends 'default/layout.html.twig' %}
|
{% extends 'default/layout.html.twig' %}
|
||||||
{% block title %}{{ 'User'|trans }} #{{ user.id }} - {{ name }}{% endblock %}
|
{% block title %}{{ 'User'|trans }} #{{ user.id }} - {{ name }}{% endblock %}
|
||||||
{% block main_content %}
|
{% block main_content %}
|
||||||
|
<div class="padding-24-px margin-y-8-px border-radius-3-px background-color-night">
|
||||||
<div class="text-center">
|
<div class="text-center">
|
||||||
<img class="border-radius-50 border-default border-width-2-px" src="{{ user.identicon }}" alt="{{ 'identicon'|trans }}" />
|
<img class="border-radius-50 border-default border-width-2-px" src="{{ user.identicon }}" alt="{{ 'identicon'|trans }}" />
|
||||||
</div>
|
</div>
|
||||||
|
|
@ -85,4 +86,5 @@
|
||||||
</tr>
|
</tr>
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
|
</div>
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
@ -1,6 +1,7 @@
|
||||||
{% extends 'default/layout.html.twig' %}
|
{% extends 'default/layout.html.twig' %}
|
||||||
{% block title %}{{ 'Profile'|trans }} - {{ name }}{% endblock %}
|
{% block title %}{{ 'Profile'|trans }} - {{ name }}{% endblock %}
|
||||||
{% block main_content %}
|
{% block main_content %}
|
||||||
|
<div class="padding-24-px margin-y-8-px border-radius-3-px background-color-night">
|
||||||
<form name="profile" action="{{ path('user_profile') }}" method="post">
|
<form name="profile" action="{{ path('user_profile') }}" method="post">
|
||||||
<div class="text-center">
|
<div class="text-center">
|
||||||
<img class="border-radius-50 border-default border-width-2-px" src="{{ user.identicon }}" alt="{{ 'identicon'|trans }}" />
|
<img class="border-radius-50 border-default border-width-2-px" src="{{ user.identicon }}" alt="{{ 'identicon'|trans }}" />
|
||||||
|
|
@ -106,4 +107,5 @@
|
||||||
<input class="button-green" type="submit" value="{{'Save'|trans }}" />
|
<input class="button-green" type="submit" value="{{'Save'|trans }}" />
|
||||||
</div>
|
</div>
|
||||||
</form>
|
</form>
|
||||||
|
</div>
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue