Statistics
| Branch: | Tag: | Revision:

root / cloudcmsguide / templates / cloudcmsguide / detail.html @ 59ab14be

History | View | Annotate | Download (2.3 kB)

1
{% load applicationcontent_tags pagination_tags i18n cloudcms_tags %}
2

    
3
<div class="two-cols lt-small clearfix details faq">
4
        <div class="rt">
5
                <div class="question details {{ entry.service.class_name }}">
6
                    <h2>{{ entry.title|upper }}</h2>
7
                    <div class="content">
8
                        {% for content in entry.content.main %}
9
                            {{ content.render }}
10
                        {% endfor %}
11
                    </div>
12
                    <div class="clearfix next-prev">
13
                    {% if entry.get_next %}
14
                            <a href="{{ entry.get_next.get_absolute_url }}" class="next">Next ></a>         
15
                {% endif %} 
16
                    {% if entry.get_previous %}
17
                            <a href="{{ entry.get_previous.get_absolute_url }}" class="prev">< Previous</a>
18
                    {% else %}
19
                            <a href="{{ entry.back_url }}">{% trans "&lt; Back to User Guide" %}</a>
20
                    {% endif%}
21
                            
22
                    </div>
23
                </div>
24
                 
25
                <div class="extra-menu">
26
                        {% for service in services %}
27
                                {% if service == entry.service %}
28
                                <div class="faq-category {{ service.class_name }}">                                 
29
                                                   <h3>{{ service.translation.title_userguide|upper }}</h3>
30
                                                 {% if category == entry.category %}
31
                                                    
32
                                      <ul>
33
                                           {% for e in service.userguideentries.active %}
34
                                          <li>
35
                                             {% if e != entry %}<a href="{{ e.get_absolute_url }}">{% endif %}{{ e.title }}{% if e != question %}</a>{% endif %}
36
                                          </li>
37
                                          {% endfor %}
38
                                          <br />
39
                                      </ul>
40
                                   {% endif %}
41
                                  
42
                                </div>
43
                                {% endif %}
44
                        {% endfor %}
45
                </div>
46
        </div>
47
         
48
        <div class="lt">
49
                {% for service in services %}
50
                <div class="faq-category {{ service.class_name }}">
51
                        <h2>
52
                                {% if service != entry.service %}
53
                                        <a href="{{ service.get_first_entry.get_absolute_url }}">
54
                                {% endif %}
55
                                        {{ service.translation.title_userguide|upper }}
56
                                {% if service != entry.service %}
57
                                        </a>
58
                                {% endif %}
59
                        </h2>
60
                         
61
                                {% if service == entry.service %}
62
                               <ul>
63
                            {% for e in service.userguideentries.active %}
64
                                    <li>{% if e != entry %}<a href="{{ e.get_absolute_url }}">{% endif %}{{ e.title }}{% if e != entry %}</a>{% endif %}</li>
65
                            {% endfor %}
66
                                </ul>
67
                           {% endif %}
68
                  
69
                </div>
70
                {% endfor %}
71
        </div>
72
</div>        
73

    
74
 
75

    
76