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.

14 lines
450 B

10 years ago
11 years ago
  1. @model IEnumerable<Sevomin.Models.JobApplicationViewModel>
  2. @if (Model.Count() != 0)
  3. {
  4. foreach (var jobRequest in Model)
  5. {
  6. @Html.Partial("MiniApplication", jobRequest)
  7. }
  8. } else{
  9. <div class="panel panel-default">
  10. <div class="panel-body rtl">
  11. <p>تا کنون هیچ درخواستی برای آگهی های شما از طرف متخصصین ارسال نشده.</p>
  12. </div>
  13. </div>
  14. }