This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from django.contrib import admin | |
''' | |
QuestionAdmin is a example for active this resource in your admin object. | |
''' | |
class QuestionAdmin(admin.ModelAdmin): | |
... | |
list_filter = ['pub_date'] | |
... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{% block content_title %} | |
{% if title %} | |
<h1 class="ui header"> | |
<div class="content">{{ title }} | |
<div class="sub header"> | |
{% block breadcrumbs %} | |
<div class="ui small breadcrumb"> | |
<a class="section" href="{% url 'admin:index' %}">{% trans 'Home' %}</a> | |
{% if title %} | |
<i class="right angle icon divider"></i> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{% load placehold %} | |
... | |
{{ field.label_tag }} | |
{% if field.is_readonly %} | |
<p>{{ field.contents }}</p> | |
{% else %} | |
{{ field.field|help_text_as_placeholder }} | |
{% endif %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from core.utils import SemanticIcons | |
from django.utils.translation import ugettext_lazy as _ | |
from django.contrib import admin | |
''' | |
QuestionAdmin is a example. Use boolean icon in your admin objects. | |
Created method with boolean value used with SemanticIcons class and added in list_display items. | |
''' | |
class QuestionAdmin(admin.ModelAdmin): |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{% load i18n paginator %} | |
<div class="ui right floated pagination small menu"> | |
{% first_link cl %} | |
{% previous_link cl %} | |
{% if pagination_required %} | |
{% for i in page_range %} | |
{% paginator_number cl i %} | |
{% endfor %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- coding: utf-8 -*- | |
from django import template | |
from django.forms.utils import ErrorList | |
from core.utils import SemanticErrorList | |
register = template.Library() | |
@register.filter | |
def as_pointing_label(errors): | |
''' |