U sbalenych korektur nezobrazovat ikony.
This commit is contained in:
		
							parent
							
								
									8671822ca0
								
							
						
					
					
						commit
						67d61cabb7
					
				
					 2 changed files with 13 additions and 8 deletions
				
			
		|  | @ -126,11 +126,14 @@ function img_click(element, ev) { | ||||||
| function toggle_visibility(button){ | function toggle_visibility(button){ | ||||||
| 	var divbox = button.parentNode.parentNode.parentNode; | 	var divbox = button.parentNode.parentNode.parentNode; | ||||||
| 	var id = divbox.id; | 	var id = divbox.id; | ||||||
|  | 	var buttondiv = document.getElementById(id+'-buttons') | ||||||
| 	var text = document.getElementById(id+'-body'); | 	var text = document.getElementById(id+'-body'); | ||||||
| 	if (text.style.display == 'none'){ | 	if (text.style.display == 'none'){ | ||||||
| 		text.style.display = 'block'; | 		text.style.display = 'block'; | ||||||
|  | 		buttondiv.style.display = 'inline-block'; | ||||||
| 	}else { | 	}else { | ||||||
| 		text.style.display = 'none'; | 		text.style.display = 'none'; | ||||||
|  | 		buttondiv.style.display = 'none'; | ||||||
| 	} | 	} | ||||||
| 	for (var i=0;i<comments.length-1;i++){ | 	for (var i=0;i<comments.length-1;i++){ | ||||||
| 		 place_comments_one_div(comments[i][0], comments[i][1]) | 		 place_comments_one_div(comments[i][0], comments[i][1]) | ||||||
|  |  | ||||||
|  | @ -99,8 +99,9 @@ | ||||||
| 	    onmouseout='box_onmouseout(this,{% if o.status = 'opraveno' %}"done"{% elif o.status = 'neni_chyba' %}"wontfix"{%else%}""{% endif %})'>  | 	    onmouseout='box_onmouseout(this,{% if o.status = 'opraveno' %}"done"{% elif o.status = 'neni_chyba' %}"wontfix"{%else%}""{% endif %})'>  | ||||||
| 
 | 
 | ||||||
|     	<div class='corr-header'>  |     	<div class='corr-header'>  | ||||||
| 			<div class='author' id='op{{o.id}}-autor'>{{o.autor}}</div> | 			<span class='author' id='op{{o.id}}-autor'>{{o.autor}}</span> | ||||||
| 			<div class='float-right'> | 			<span class='float-right'> | ||||||
|  | 				<span id='op{{o.id}}-buttons'> | ||||||
| 				<!-- Existujici korektura !--> | 				<!-- Existujici korektura !--> | ||||||
| 	  			<form  action='' onsubmit='save_scroll(this)' method='POST'> | 	  			<form  action='' onsubmit='save_scroll(this)' method='POST'> | ||||||
| 	   				{% csrf_token %} | 	   				{% csrf_token %} | ||||||
|  | @ -147,11 +148,12 @@ | ||||||
| 				<button type='button' onclick='box_edit(this, "comment");' title='Komentovat'> | 				<button type='button' onclick='box_edit(this, "comment");' title='Komentovat'> | ||||||
|           <img src="{% static "korektury/imgs/comment.png" %}"/> |           <img src="{% static "korektury/imgs/comment.png" %}"/> | ||||||
| 				</button> | 				</button> | ||||||
|  | 				</span> | ||||||
| 				<button type='button' onclick='toggle_visibility(this);' title='Skrýt/Zobrazit'> | 				<button type='button' onclick='toggle_visibility(this);' title='Skrýt/Zobrazit'> | ||||||
|           <img src="{% static "korektury/imgs/hide.png" %}"/> |           <img src="{% static "korektury/imgs/hide.png" %}"/> | ||||||
| 				</button> | 				</button> | ||||||
| 
 | 
 | ||||||
| 			</div> | 			</span> | ||||||
| 		</div> | 		</div> | ||||||
| 		<div class='corr-body' id='op{{o.id}}-body'> | 		<div class='corr-body' id='op{{o.id}}-body'> | ||||||
| 		<div id='op{{o.id}}-text'>{{o.text}}</div> | 		<div id='op{{o.id}}-text'>{{o.text}}</div> | ||||||
|  | @ -159,17 +161,17 @@ | ||||||
| 		{% for k in o.komentare %} | 		{% for k in o.komentare %} | ||||||
|     	<hr> |     	<hr> | ||||||
| 		<div class='comment' id='k{{k.id}}'> | 		<div class='comment' id='k{{k.id}}'> | ||||||
|     		<div class='corr-header'> |     		<span class='corr-header'> | ||||||
|         		<div class='author'>{{k.autor}}</div> |         		<div class='author'>{{k.autor}}</div> | ||||||
|             	<div class="float-right"> |             	<span class="float-right"> | ||||||
| 					<!-- Komentar !--> | 		<!-- Komentar !--> | ||||||
|                     <form  action='' onsubmit='save_scroll(this)' method='POST'> |                     <form  action='' onsubmit='save_scroll(this)' method='POST'> | ||||||
| 						{% csrf_token %} | 						{% csrf_token %} | ||||||
|                     	<input type='hidden' name='pdf' value='{{pdf.id}}'> |                     	<input type='hidden' name='pdf' value='{{pdf.id}}'> | ||||||
| 						<input type='hidden' name='id' value='{{k.id}}'> | 						<input type='hidden' name='id' value='{{k.id}}'> | ||||||
|                     	<input type='hidden' name='scroll'> |                     	<input type='hidden' name='scroll'> | ||||||
|                     	<button type='submit' name='action' value='del-comment' title='Smaž komentář' |                     	<button type='submit' name='action' value='del-comment' title='Smaž komentář' | ||||||
|                       		onclick='return confirm("Opravdu smazat komentář?")'> |                       	onclick='return confirm("Opravdu smazat komentář?")'> | ||||||
|               <img src="{% static "korektury/imgs/delete.png" %}"/> |               <img src="{% static "korektury/imgs/delete.png" %}"/> | ||||||
| 					 	</button> | 					 	</button> | ||||||
|                     </form> |                     </form> | ||||||
|  | @ -178,7 +180,7 @@ | ||||||
|             <img src="{% static "korektury/imgs/edit.png"%}"/> |             <img src="{% static "korektury/imgs/edit.png"%}"/> | ||||||
| 					</button> | 					</button> | ||||||
| 				</div> | 				</div> | ||||||
| 			</div> | 			</span> | ||||||
| 			<div id='kt{{k.id}}'>{{k.text}}</div> | 			<div id='kt{{k.id}}'>{{k.text}}</div> | ||||||
| 		</div> | 		</div> | ||||||
| 		{% endfor %}  | 		{% endfor %}  | ||||||
|  |  | ||||||
		Loading…
	
		Reference in a new issue