add explanation text + reformat
This commit is contained in:
		@@ -32,9 +32,9 @@
 | 
			
		||||
                            {{ macros::inputgroup(label='Spitzname', name='nickname', type="text", value=user.nickname, readonly=not allowed_to_edit) }}
 | 
			
		||||
                        </form>
 | 
			
		||||
                        {% if allowed_to_edit %}
 | 
			
		||||
                        <form action="/admin/user/{{ user.id }}/new-note" method="post">
 | 
			
		||||
                            {{ macros::inputgroup(label='Neue Notiz', name='note', type="text") }}
 | 
			
		||||
                        </form>
 | 
			
		||||
                            <form action="/admin/user/{{ user.id }}/new-note" method="post">
 | 
			
		||||
                                {{ macros::inputgroup(label='Neue Notiz', name='note', type="text") }}
 | 
			
		||||
                            </form>
 | 
			
		||||
                        {% endif %}
 | 
			
		||||
                        {% if user.pw and allowed_to_edit %}
 | 
			
		||||
                            <div>
 | 
			
		||||
@@ -389,9 +389,11 @@
 | 
			
		||||
                <div class="mx-3 divide-y divide-gray-200 dark:divide-primary-600">
 | 
			
		||||
                    <div class="py-3">
 | 
			
		||||
                        <ul class="list-disc ms-4">
 | 
			
		||||
                          {% for activity in activities %}
 | 
			
		||||
                            <li>{{ activity.created_at | date(format="%d. %m. %Y") }}: {{ activity.text }}</li>
 | 
			
		||||
                          {% endfor %}
 | 
			
		||||
                            {% for activity in activities %}
 | 
			
		||||
                                <li>{{ activity.created_at | date(format="%d. %m. %Y") }}: {{ activity.text }}</li>
 | 
			
		||||
                            {% else %}
 | 
			
		||||
                                <li>Noch keine Aktivität... Stay tuned 😆</li>
 | 
			
		||||
                            {% endfor %}
 | 
			
		||||
                        </ul>
 | 
			
		||||
                    </div>
 | 
			
		||||
                </div>
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user