Git Product home page Git Product logo

gtalents's Introduction

gTalents

it contains Projects tracking...

gtalents's People

Contributors

shaunakwyn avatar

Watchers

James Cloos avatar Roberto Robles avatar  avatar

gtalents's Issues

[ issue #24 ] Admin - Vacancies - List and Date

[File]

/htdocs/gtalents/local-alpha/resources/views/vacancy/index.blade.php

[Changes]

in <thead> of id "#table_id" : 
{code}
       <th>Posted On</th>
       <th>Suppliers</th>
{code}
after "<tbody>
            @if (count($vacancies))
                @foreach ($vacancies as $vacancy)"
{code}
       <?php   $suppliers = \Vanguard\VacancyUser::where('vacancy_id', $vacancy->id)->where('status',1)->get();
                        $sups_ar = []; ?>
{code}

{code}
     <td>{{ $vacancy->created_at }}</td>
     <td>
         @foreach ($suppliers as $supplier)
         <?php $sups_ar[] = $supplier->supplier->code; ?>                                
         @endforeach
         <?php $sups_str = implode(',', $sups_ar); ?>
         {{$sups_str}}
     </td>
{code}

[ issue #7 ] General / Spelling Errors

"View All Notification" -> View all notifications [Bell Icon on top right corner]

[File]

/home/gtalents/public_html/alpha/resources/views/partials/header-registrado.blade.php

[Changes]

in approbateCandidate() :
{code}
	<a href="{{route('viewalerts')}}" style="text-align:center;font-size:13px;">View all notifications</a>
{code}

[ issue #10 ] Shortern text - Read More option missing

[File]

/home/gtalents/public_html/alpha/resources/views/dashboard_user/post/post_detail.blade.php

[Changes]

<div class="intere_suppie">
      <p class="name_gksqie">{{$supplier->supplier->code}}</p>
</div>
<div class="bag_icons_jobs">
       <a modal="modalProfileSupplierIn{{$supplier->supplier_user_id}}" href="#modalProfileSupplierIn{{$supplier->supplier_user_id}}" class="waves-effect waves-light" onclick="check_n_remove_less({{$supplier->supplier_user_id}});"><i class="fas fa-medkit baguse_icons_jobs"></i></a>
</div>
in read_more_less() match like below : 
{code}
        $(e).find('.read-less').remove();
        $(e).find('.read-more').remove();
        var myStr = $(e).text();
{code}

Create Vacancy Page Not working - Admin Side

Create Vacancy Page Not working - Admin Side

[File]

/htdocs/gtalents/alpha/resources/views/vacancy/partials/details.blade.php

[Changes]

{code}
    <select class="form-control" name="is_approved_description">
        <option>Select status</option>
        @if($edit)
           <option <?php if($vacancy->is_approved_description == 'approved'){ ?> selected <?php } ?> value="approved">Approved</option>
           <option <?php if($vacancy->is_approved_description == 'confirmation pending'){ ?> selected <?php } ?> value="confirmation pending">Confirmation Pending</option>
            <option <?php if($vacancy->is_approved_description == 'not approved'){ ?> selected <?php } ?> value="not approved">Not approved</option>
         @else
             <option value="approved">Approved</option>
             <option value="confirmation pending">Confirmation Pending</option>
             <option value="not approved">Not approved</option>
         @endif
     </select>
{code}

[ issue #12 ] Commissions per User

[File]

/home/gtalents/public_html/alpha/app/Repositories/Category/EloquentCategory.php

[Changes]

in findbyname() :
{code}
	return Category::where('name', $name)->firstorfail();
{code}

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.