mirror of
				https://github.com/paperless-ngx/paperless-ngx.git
				synced 2025-10-30 03:56:23 -05:00 
			
		
		
		
	Add hack to allow for logentries to show for all users.
This commit is contained in:
		
							
								
								
									
										39
									
								
								src/documents/templates/admin/index.html
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										39
									
								
								src/documents/templates/admin/index.html
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,39 @@ | ||||
| {% extends "admin/index.html" %} | ||||
|  | ||||
|  | ||||
| {% load i18n static %} | ||||
|  | ||||
|  | ||||
| {# This whole block is here just to override the `get_admin_log` line so #} | ||||
| {# that the log entries aren't limited to the current user #} | ||||
| {% block sidebar %} | ||||
| <div id="content-related"> | ||||
|     <div class="module" id="recent-actions-module"> | ||||
|         <h2>{% trans 'Recent actions' %}</h2> | ||||
|         <h3>{% trans 'My actions' %}</h3> | ||||
|             {% load log %} | ||||
|             {% get_admin_log 10 as admin_log %} | ||||
|             {% if not admin_log %} | ||||
|             <p>{% trans 'None available' %}</p> | ||||
|             {% else %} | ||||
|             <ul class="actionlist"> | ||||
|             {% for entry in admin_log %} | ||||
|             <li class="{% if entry.is_addition %}addlink{% endif %}{% if entry.is_change %}changelink{% endif %}{% if entry.is_deletion %}deletelink{% endif %}"> | ||||
|                 {% if entry.is_deletion or not entry.get_admin_url %} | ||||
|                     {{ entry.object_repr }} | ||||
|                 {% else %} | ||||
|                     <a href="{{ entry.get_admin_url }}">{{ entry.object_repr }}</a> | ||||
|                 {% endif %} | ||||
|                 <br/> | ||||
|                 {% if entry.content_type %} | ||||
|                     <span class="mini quiet">{% filter capfirst %}{{ entry.content_type }}{% endfilter %}</span> | ||||
|                 {% else %} | ||||
|                     <span class="mini quiet">{% trans 'Unknown content' %}</span> | ||||
|                 {% endif %} | ||||
|             </li> | ||||
|             {% endfor %} | ||||
|             </ul> | ||||
|             {% endif %} | ||||
|     </div> | ||||
| </div> | ||||
| {% endblock %} | ||||
		Reference in New Issue
	
	Block a user
	 Daniel Quinn
					Daniel Quinn