summaryrefslogtreecommitdiffstats
path: root/askbot/skins/default/templates/question/question_card.html
blob: ff4ada1da48f8926669d13c51dc8e75482082714 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<div class="vote-buttons">
    {# ==== BEGIN: question/question_vote_buttons.html ==== #}
    {% include "question/question_vote_buttons.html" %}
    {# ==== END: question/question_vote_buttons.html ==== #}
    {# ==== BEGIN: question/share_buttons.html ==== #}
    {% include "question/share_buttons.html" %}
    {# ==== END: question/share_buttons.html ==== #}
</div>
<div class="question-content">

    <h1><a href="{{ question.get_absolute_url() }}">{{ thread.get_title(question)|escape }}</a></h1>
    {% include "question/question_tags.html" %}
    {# ==== END: question/question_tags.html" #}

    <div id="question-table" {% if question.deleted %}class="deleted"{%endif%}>
        <div class="question-body">
            <div class="post-update-info-container">
                {# ==== START: "question/question_author_info.html" #}
                {% include "question/question_author_info.html" %}
                {# ==== END: "question/question_author_info.html" #}
            </div>
            {{ question.html }}
        </div>
        <div id="question-controls" class="post-controls">
            {# ==== START: include "question/question_controls.html" #}
            {% include "question/question_controls.html" %}
            {# ==== END: include "question/question_controls.html" #}
        </div>
        {# ==== START: question/question_comments.html ==== #}
        {% include "question/question_comments.html" %}
        {# ==== END: question/question_comments.html ==== #}
    </div>

</div>
<div class="clean"></div>