kanbanworkflowstimelinescrumrubyroadmapproject-planningproject-managementopenprojectangularissue-trackerifcgantt-chartganttbug-trackerboardsbcf
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
92 lines
3.3 KiB
92 lines
3.3 KiB
<div class="detail-panel-description">
|
|
|
|
<h3>Description</h3>
|
|
<div class="detail-panel-description-content">
|
|
{{ workPackage.props.description }}
|
|
</div>
|
|
</div>
|
|
|
|
<div class="panel-toggler" ng-click="hideFullDescription = !hideFullDescription">
|
|
<fieldset>
|
|
<legend align="center">
|
|
<span ng-if="!hideFullDescription">
|
|
<i class="icon-arrow-right5-2"></i>
|
|
Hide full description
|
|
</span>
|
|
<span ng-if="hideFullDescription">
|
|
<i class="icon-arrow-right5-3"></i>
|
|
Show full description
|
|
</span>
|
|
</legend>
|
|
</fieldset>
|
|
</div>
|
|
|
|
<div class="detail-panel-attributes" slide-toggle collapsed="hideFullDescription">
|
|
<ul>
|
|
<li><label>Status</label>{{ workPackage.props.status }}</li>
|
|
<li><label>Priortiy</label>{{ workPackage.props.priority }}</li>
|
|
<li><label>Date</label>{{ workPackage.props.startDate }} - {{ workPackage.props.dueDate }}</li>
|
|
<li><label>Responsible</label><img class="avatar" src="images/avatar_logout.png" /><span class="user"><a href="#">{{ workPackage.props.responsibleName }}</a></span>
|
|
<span class="role">{{ workPackage.props.responsibleRole }}</span>
|
|
</li>
|
|
<li><label>Assignee</label><img class="avatar" src="images/avatar_logout.png" /><span class="user"><a href="#">{{ workPackage.props.assigneeName }}</a></span>
|
|
<span class="role">{{ workPackage.props.assigneeRole }}</span>
|
|
</li>
|
|
<li><label>% Done</label>{{ workPackage.props.percentageDone }} %</li>
|
|
</ul>
|
|
</div>
|
|
|
|
<div class="panel-toggler" ng-click="hideAllAttributes = !hideAllAttributes">
|
|
<fieldset>
|
|
<legend align="center">
|
|
<span ng-if="!hideAllAttributes">
|
|
<i class="icon-arrow-right5-2"></i>
|
|
Hide all attributes
|
|
</span>
|
|
<span ng-if="hideAllAttributes">
|
|
<i class="icon-arrow-right5-3"></i>
|
|
Show all attributes
|
|
</span>
|
|
</legend>
|
|
</fieldset>
|
|
</div>
|
|
|
|
<div class="detail-panel-latest-activity" slide-toggle collapsed="hideAllAttributes">
|
|
<h3>Latest activity</h3>
|
|
<ul>
|
|
<li>
|
|
<div class="comments-number"><a href="#1">#1</a>
|
|
<div class="comments-icons"><i class="icon-quote"></i><i class="icon-edit"></i></div>
|
|
</div>
|
|
<img class="avatar" src="images/avatar_logout.png" />
|
|
<span class="user"><a href="#">Christoph Zierz</a></span>
|
|
<span class="date">commented on 06/05/2014 16:42 Uhr</span>
|
|
<span class="comment">Lorem ipsum dolor sit amet, consectetuer adipiscing elit.
|
|
Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis . ..
|
|
</span>
|
|
</li>
|
|
<li>
|
|
<div class="comments-number"><a href="#1">#2</a>
|
|
<div class="comments-icons"><i class="icon-quote"></i><i class="icon-edit"></i></div>
|
|
</div>
|
|
<img class="avatar" src="images/avatar_logout.png" />
|
|
<span class="user"><a href="#">Niels Lindenthal</a></span>
|
|
<span class="date">commented on 08/05/2014 16:42 Uhr</span>
|
|
<span class="comment">
|
|
<ul>
|
|
<li>Status changed from scheduled to closed</li>
|
|
<li>Assignee deleted (Michael Frister)</li>
|
|
<li>% done changed from 0 to 100</li>
|
|
</ul>
|
|
</span>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
|
|
<div class="comments-form">
|
|
<h3>Add your comments here</h3>
|
|
<form>
|
|
<textarea placeholder="Add comments here" rows="4"></textarea>
|
|
</form>
|
|
<button class="button">Add comment</button>
|
|
</div>
|
|
|