Revision 5bd27846 cloudcmsguide/templates/cloudcmsguide/detail.html

b/cloudcmsguide/templates/cloudcmsguide/detail.html
1
{% load applicationcontent_tags i18n %}
1
{% load applicationcontent_tags pagination_tags i18n cloudcms_tags %}
2 2

  
3
{% fragment request "sidecol" %}
4
{% include "cloudcmsguide/archive.html" %}
5
{% endfragment %}
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
			 {% for category, questions in service|get_service_faqs %}
6 62

  
7
{% fragment request "maincol" %}
8
<div class="user-guide-entry">
9
    <h2>{{ entry.title|upper }}</h2>
10
    <div class="content">
11
        {% for content in entry.content.main %}
12
            {{ content.render }}
13
        {% endfor %}
14
    </div>
15
    <div class="bottom-content backlink">
16
        <a href="{{ entry.back_url }}">{% trans "&lt; Back to User guide" %}</a>
17
    </div>
18
</div>
19
{% endfragment %}
63
			 	{% if service == question.service %}
64
              <h3>{{ category.translation.title }}</h3>
65
              <ul>
66
                {% for q in questions %}
67
                  <li>
68
                     {% if q != question %}<a href="{{ q.get_absolute_url }}">{% endif %}{{ q.title }}{% if q != question %}</a>{% endif %}
69
                  </li>
70
                  {% endfor %}
71
                  <br />
72
              </ul>
73
	           {% endif %}
74
	         {% endfor %}
75
		</div>
76
		{% endfor %}
77
	</div>
78
</div>	
79

  
80
 
81

  
82
 

Also available in: Unified diff