Ver Fonte

Remove the 'time_spent' field from sprint closure

omassot há 6 anos atrás
pai
commit
b0891b9470
1 ficheiros alterados com 1 adições e 9 exclusões
  1. 1 9
      main/templates/sprint_end.html

+ 1 - 9
main/templates/sprint_end.html

@@ -47,18 +47,10 @@
 					{% endif %}
 				</td>
 				
-				<td width="50%"><a href="{% url 'story_details' story_id=story.id %}">{{ story.name }}</a></td>
+				<td width="60%"><a href="{% url 'story_details' story_id=story.id %}">{{ story.name }}</a></td>
 				
 				<td class="annotation">{% if story.epic_id %}<span>{{ story.epic.name }}</span>{% endif %}</td>
 				<td width="1%">{% if story.weight %}<span>{% include 'weight_svg.html' with weight=story.weight h=20 %}</span>{% endif %}</td>
-				<td width="10%">
-				    <form action="{% url 'story_time_spent_update' story_id=story.id %}" 
-				          method="post" accept-charset="utf-8" 
-				          style="margin: 0;">
-						{% csrf_token %}
-			    	    <input class="raw-input" name="time_spent" type="text" value="{{ story.time_spent }}" title="Temps passé (en jours)">
-				    </form>
-				</td>
 			</tr>
 		{% endfor %}
 		</table>