django-templates

    -1熱度

    2回答

    對於以下URL路由爲blog應用, from django.conf.urls import url, include from django.views.generic import ListView, DetailView from blog.models import Post urlpatterns=[ url(r'^$', ListView.as_view(

    1熱度

    3回答

    我想顯示根據條件不同的模板: class RouteList(ListView): model = DailyRoute template_name = 'route_list.html' def get_queryset(self): if DailyRoute.objects.filter(stage = '1').exists():

    2熱度

    1回答

    我想在Django中創建一個簡單的搜索表單。以下是我迄今爲止: 形式: <form action="{% url 'search_pub' pub_name=pub_name %}" method="get"> Publication name: <input type="text" id="pub_name" name="pub_name" value="herald"> <

    0熱度

    1回答

    我想對模型執行行級數學並將結果顯示在模板中。該數據庫每天爲每家公司提供一行。 class MyModel(models.Model): company = model.CharField(... daily_target = model.PositiveSmallIntger(... actual = model.PositiveSmallIntger(...

    1熱度

    1回答

    我有一個模型下面的方法: @property def get_total_planned_stops(self, *args, **kwargs): owner = self.owner planned_total = DailyRoute.objects.filter(stage=1).aggregate(Sum('planned_stops')) return

    0熱度

    2回答

    我正在使用django進行研究,並且需要花費大約12或13個小時並生成JavaScript圖表的昂貴計算流程。 我沒有使用的管理命令的計算和存儲的圖表在模型中的文本字段。 我的問題是如何顯示在模板這段JavaScript代碼? 我試着用{{ variable_name }}導致普通的JavaScript文本 我使用 <script type="javascript"> {{ variable_na

    2熱度

    1回答

    我試圖讓我的媒體目錄中的文件出現在HTML模板上。我將「Tango with Django」一書作爲教程。 這裏是我的settings.py: MEDIA_DIR = os.path.join(BASE_DIR, 'media') MEDIA_ROOT = MEDIA_DIR MEDIA_URL = '/media/' 這裏是views.py: def about(request):

    0熱度

    1回答

    我對靜態文件的一個瘋狂的問題在一個應用程序(Django的Autocomplete_Light,DAL)我使用實現形式自動完成靜態文件.. https://github.com/yourlabs/django-autocomplete-light/issues/907 我能夠在我的主頁中加載DAL表單,該表單正在擴展base.html。相同的DAL表單在擴展相同的base.html的另一個模板中不

    1熱度

    1回答

    日期時間值如,day = "2017-9-2 00:00:00", 在模板中使用時, 的index.html ... {{day}} ... 它被自動轉換通過的Django到Sept. 2, 2017, midnight。 如何禁用此行爲?我想讓它以原始格式顯示,"2017-9-2 00:00:00"。

    1熱度

    1回答

    是否可以爲全局或每個模板設置None的不同渲染?因此,我告訴Django例如將所有None渲染爲-。 有喜歡profile的網頁,我們有屬性的幾十,這將是比採取一切可能沒有照顧或重寫每個屬性都略勝一籌: {{ user.userprofile.attribute }} 要 {% firstof user.userprofile.attribute "-" %} 或 {{ user.user